qt5
Rev | Line | |
---|
[72f6fe4] | 1 | #ifndef SCHEDULEXMLPARSER_H_
|
---|
| 2 | #define SCHEDULEXMLPARSER_H_
|
---|
| 3 |
|
---|
| 4 | #include <QObject>
|
---|
| 5 |
|
---|
| 6 | class ScheduleXmlParser : public QObject
|
---|
| 7 | {
|
---|
| 8 | Q_OBJECT
|
---|
| 9 | public:
|
---|
| 10 | ScheduleXmlParser (QObject *aParent = NULL);
|
---|
| 11 |
|
---|
| 12 | public slots:
|
---|
[3a8dc71] | 13 | int parseData(const QByteArray &aData); // returns 'confId' of parsed conference schedule
|
---|
[72f6fe4] | 14 |
|
---|
| 15 | signals:
|
---|
| 16 | void progressStatus(int aStatus);
|
---|
[d336730] | 17 | void parsingSchedule(const QString &aTitle);
|
---|
[72f6fe4] | 18 | };
|
---|
| 19 |
|
---|
| 20 | #endif /* SCHEDULEXMLPARSER_H_ */
|
---|
| 21 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.