You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
354 B
C++
24 lines
354 B
C++
#ifndef EETSENDER_H
|
|
#define EETSENDER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "eetcpp_global.h"
|
|
#include "eetrequest.h"
|
|
#include "eettemplate.h"
|
|
|
|
class EETCPPSHARED_EXPORT EetSender : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit EetSender(QObject *parent = 0);
|
|
|
|
void sendRequest(EetRequest *request);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // EETSENDER_H
|