blob: d1d27c3039a10c8fa5f138aa2fb5de17ccdd1917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef HANDLER_H
#define HANDLER_H
#include <qstring.h>
#include <qxml.h>
class Handler : public QXmlDefaultHandler
{
public:
bool startDocument();
bool startElement(const QString &, const QString &, const QString &qName,
const QXmlAttributes &);
bool endElement(const QString &, const QString &, const QString &);
bool fatalError(const QXmlParseException &exception);
QStringList& names();
QList<int>& indentations();
private:
int indentationLevel;
QStringList elementName;
QList<int> elementIndentation;
};
#endif
|