//Заголовок:class Notifer : QObject { Q_OBJECTpublic: Notifer(QObject parent = 0) ~Notifer()public signals: void notify(args...);private: void doNotify(args...); static void callBack(args...) static Notifer* self; }//РеализацияNotifer::self = 0;Notifer::Notifer(QObject parent) : QObject(parent) { self = this; InitSDKСallBack(callBack);}~Notifer::Notifer() { self = 0;}Notifer::callBack(args...) { self->doNotify(args...);}Notifer::doNotify(args...) { emit notify(args...);}