removed the state machine. use only http.
[simple-xmbc-rem] / src / xbmc.h
1 #ifndef XBMC_H
2 #define XBMC_H
3
4 #include <QString>
5 #include <QNetworkAccessManager>
6
7 class Xbmc : public QObject
8 {
9     Q_OBJECT
10 public:
11     Xbmc(QObject* parent = 0);
12     ~Xbmc();
13
14     void actionMoveRight();
15     void actionMoveLeft();
16     void actionMoveUp();
17     void actionMoveDown();
18
19 private:
20     void do_command_action(int action);
21
22     QNetworkAccessManager *m_manager;
23 };
24
25 #endif // XBMC_H