harbour-fernschreiber/src/tdlibwrapper.h

28 lines
380 B
C
Raw Normal View History

2020-08-10 15:17:29 +03:00
#ifndef TDLIBWRAPPER_H
#define TDLIBWRAPPER_H
#include <QObject>
#include <QDebug>
#include <td/telegram/td_json_client.h>
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