591fe855d0fe8b84bf32538ce7442d6f925b8f29
[irwi] / src / iengine.h
1 #ifndef _IENGINE_H_
2 #define _IENGINE_H_
3
4 #include <QString>
5
6 class IRemote;
7 class RemoteDbParser;
8
9 class IEngine
10 {
11 public:
12     IEngine() {}
13     virtual ~IEngine() {}
14     virtual RemoteDbParser availableRemotes() = 0;
15     virtual void setRemote(const QString &id) = 0;
16     virtual IRemote *remote() = 0;
17 };
18
19 #endif // _IENGINE_H_
20