qt5
Line | |
---|
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:
|
---|
13 | int parseData(const QByteArray &aData); // returns 'confId' of parsed conference schedule
|
---|
14 |
|
---|
15 | signals:
|
---|
16 | void progressStatus(int aStatus);
|
---|
17 | void parsingSchedule(const QString &aTitle);
|
---|
18 | };
|
---|
19 |
|
---|
20 | #endif /* SCHEDULEXMLPARSER_H_ */
|
---|
21 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.