#ifndef TDLIBWRAPPER_H #define TDLIBWRAPPER_H #include #include #include class TDLibWrapper : public QObject { Q_OBJECT public: explicit TDLibWrapper(QObject *parent = nullptr); ~TDLibWrapper(); Q_INVOKABLE void testIt(); signals: public slots: private: void *tdLibClient; }; #endif // TDLIBWRAPPER_H