qt5
Last change
on this file since f0ce4d0 was
72f6fe4,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
implemented xml parser
|
-
Property mode set to
100644
|
File size:
425 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 | };
|
---|
20 |
|
---|
21 | #endif /* SCHEDULEXMLPARSER_H_ */
|
---|
22 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.