Приветствую!В программе использую свой класс на основе QT класса QAxObject.Соотвественно пишу:Код:class SMKAxObject : public QAxObject{ Q_OBJECTpublic: SMKAxObject(); ~SMKAxObject();public slots: void onException(int, QString, QString, QString);signals: void SMKAxException(int, QString, QString, QString, QAxObject*);};При компиляции выдает следующую ошибку:\generatedfiles\debug\moc_ACADDis patcher.cpp(49) : error C2248: 'QAxObject::staticMetaObject' : cannot access private member declared in class 'QAxObject'1> d:\qt\462\include\activeqt\../../src/activeqt/container/qaxobject.h(76) : see declaration of 'QAxObject::staticMetaObject'1> d:\qt\462\include\activeqt\../../src/activeqt/container/qaxobject.h(54) : see declaration of 'QAxObject'Подскажите как решить проблему.
|