Complete rewrite. Does not work yet.
[irwi] / src / netio.h
1 #ifndef _NETIO_H_
2 #define _NETIO_H_
3
4 #include <QObject>
5
6 class QString;
7
8 class NetIO : public QObject
9 {
10     Q_OBJECT
11
12 public:
13     NetIO();
14     ~NetIO();
15
16     void ratingById(const QString &id);
17
18 signals:
19     void ratingDownloaded(int);
20 };
21
22 #endif // _NETIO_H_
23