Krita Source Code Documentation
Loading...
Searching...
No Matches
kxmlguiversionhandler_p.h
Go to the documentation of this file.
1/* This file is part of the KDE libraries
2 SPDX-FileCopyrightText: 2000 Simon Hausmann <hausmann@kde.org>
3 SPDX-FileCopyrightText: 2000 Kurt Granroth <granroth@kde.org>
4 SPDX-FileCopyrightText: 2007 David Faure <faure@kde.org>
5
6 SPDX-License-Identifier: LGPL-2.0-or-later
7*/
8
9#ifndef KisKXMLGUIVERSIONHANDLER_P_H
10#define KisKXMLGUIVERSIONHANDLER_P_H
11
12#include <QStringList>
13
26{
27public:
29
30 QString finalFile() const
31 {
32 return m_file;
33 }
34 QString finalDocument() const
35 {
36 return m_doc;
37 }
38
39 static QString findVersionNumber(const QString &xml); // used by the unit test
40
41private:
42 QString m_file;
43 QString m_doc;
44};
45
46#endif /* KisKXMLGUIVERSIONHANDLER_P_H */
KXmlGuiVersionHandler(const QStringList &files)
static QString findVersionNumber(const QString &xml)