blob: 1709aabd8cbf52804bb33a72940a15cf0348b592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef CONTROLLER_HXX
#define CONTROLLER_HXX
#include <qrtclient.hxx>
#include <qrtclient/ticket.hxx>
#include <qrtclient/tickethistory.hxx>
using namespace RTClient;
class Controller : public QObject
{
Q_OBJECT
public:
Controller(QObject* parent = nullptr);
~Controller();
private:
Client* rt;
TicketList* ticketList;
TicketHistoryList* historyList;
};
#endif
|