qt5
Last change
on this file since c15be10 was
c15be10,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
import schedule dialog
- changed to widget
- moved to 'conference' tab
|
-
Property mode set to
100644
|
File size:
528 bytes
|
Line | |
---|
1 | #ifndef SCHEDULEXMLPARSER_H_
|
---|
2 | #define SCHEDULEXMLPARSER_H_
|
---|
3 |
|
---|
4 | #include <QObject>
|
---|
5 |
|
---|
6 | class SqlEngine;
|
---|
7 |
|
---|
8 | class ScheduleXmlParser : public QObject
|
---|
9 | {
|
---|
10 | Q_OBJECT
|
---|
11 | public:
|
---|
12 | ScheduleXmlParser (QObject *aParent = NULL);
|
---|
13 |
|
---|
14 | public slots:
|
---|
15 | int parseData(const QByteArray &aData, SqlEngine *aDBEngine); // returns 'confId' of parsed conference schedule
|
---|
16 |
|
---|
17 | signals:
|
---|
18 | void progressStatus(int aStatus);
|
---|
19 | void parsingSchedule(const QString &aTitle);
|
---|
20 | };
|
---|
21 |
|
---|
22 | #endif /* SCHEDULEXMLPARSER_H_ */
|
---|
23 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.