aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/xmlutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/ApiExtractor/xmlutils.h')
-rw-r--r--sources/shiboken6/ApiExtractor/xmlutils.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/sources/shiboken6/ApiExtractor/xmlutils.h b/sources/shiboken6/ApiExtractor/xmlutils.h
new file mode 100644
index 000000000..ac23c9c9c
--- /dev/null
+++ b/sources/shiboken6/ApiExtractor/xmlutils.h
@@ -0,0 +1,29 @@
+// Copyright (C) 2019 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#ifndef XMLUTILS_H
+#define XMLUTILS_H
+
+#include <QtCore/QString>
+
+#include <memory>
+
+class XQuery
+{
+public:
+ Q_DISABLE_COPY_MOVE(XQuery)
+
+ virtual ~XQuery();
+
+ QString evaluate(QString xPathExpression, QString *errorMessage);
+
+ static std::shared_ptr<XQuery> create(const QString &focus, QString *errorMessage);
+
+protected:
+ XQuery();
+
+ virtual QString doEvaluate(const QString &xPathExpression, QString *errorMessage) = 0;
+};
+
+QString xsl_transform(const QString &xml, const QString &xsl, QString *errorMessage);
+
+#endif // XMLUTILS_H