qt5
Last change
on this file since d336730 was
d336730,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
modifications to import-schedule dialog
- closed automatically after parsing/importing schedule
|
-
Property mode set to
100644
|
File size:
479 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 | void parseData(const QByteArray &aData, SqlEngine *aDBEngine);
|
---|
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.