harbour-fernschreiber/src/tdlibwrapper.h

29 lines
437 B
C
Raw Normal View History

2020-08-10 15:17:29 +03:00
#ifndef TDLIBWRAPPER_H
#define TDLIBWRAPPER_H
2020-08-10 21:17:13 +03:00
#include <QCoreApplication>
2020-08-10 15:17:29 +03:00
#include <QObject>
#include <QDebug>
#include <td/telegram/td_json_client.h>
2020-08-10 21:17:13 +03:00
#include "tdlibreceiver.h"
2020-08-10 15:17:29 +03:00
class TDLibWrapper : public QObject
{
Q_OBJECT
public:
explicit TDLibWrapper(QObject *parent = nullptr);
~TDLibWrapper();
signals:
public slots:
private:
void *tdLibClient;
2020-08-10 21:17:13 +03:00
TDLibReceiver *tdLibReceiver;
2020-08-10 15:17:29 +03:00
};
#endif // TDLIBWRAPPER_H