summaryrefslogtreecommitdiff
path: root/controller.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'controller.hxx')
-rw-r--r--controller.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/controller.hxx b/controller.hxx
index 04db899..1e9c7f8 100644
--- a/controller.hxx
+++ b/controller.hxx
@@ -4,7 +4,7 @@
#include <QThread>
#include <qrtclient/ticket.hxx>
-struct rtclient_user;
+struct rtclient_ticket_history_list;
class Controller : public QObject
{
@@ -16,10 +16,15 @@ class Controller : public QObject
signals:
void checked(QString const& name);
+ void gotTicketHistory(rtclient_ticket_history_list* list);
+
+ private slots:
+ void setTicketSubject(QString const& subject);
private:
QThread thread;
RTClient::TicketList* ticketList;
+ QString m_ticketSubject;
};
#endif // CONTROLLER_HXX