qt5base-lts/util/glgen/xmlspecparser.h
Lucie Gérard 05fc3aef53 Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.
Files that have to be modified by hand are modified.
License files are organized under LICENSES directory.

Task-number: QTBUG-67283
Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-05-16 16:37:38 +02:00

46 lines
1.3 KiB
C++

// Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef XMLSPECPARSER_H
#define XMLSPECPARSER_H
#include "specparser.h"
#include <QStringList>
#include <QVariant>
class QXmlStreamReader;
class XmlSpecParser : public SpecParser
{
public:
virtual QList<Version> versions() const { return m_versions; }
virtual bool parse();
protected:
const QMultiHash<VersionProfile, Function> &versionFunctions() const { return m_functions; }
const QMultiMap<QString, FunctionProfile> &extensionFunctions() const { return m_extensionFunctions; }
private:
void parseFunctions(QXmlStreamReader &stream);
void parseCommands(QXmlStreamReader &stream);
void parseCommand(QXmlStreamReader &stream);
void parseParam(QXmlStreamReader &stream, Function &func);
void parseFeature(QXmlStreamReader &stream);
void parseExtension(QXmlStreamReader &stream);
void parseRequire(QXmlStreamReader &stream, FunctionList& profile);
void parseRemoveCore(QXmlStreamReader &stream);
QMultiHash<VersionProfile, Function> m_functions;
QList<Version> m_versions;
// Extension support
QMultiMap<QString, FunctionProfile> m_extensionFunctions;
QMap<QString, Function> m_functionList;
};
#endif // XMLSPECPARSER_H