mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-15 06:00:29 +01:00
* dbus/qdbus.h: Sync with KDE Subversion revision 523647. Hopefully, this will be the last of the source-incompatible changes. Documentation has been improved; support for QList<basic-types> has been added; QDBusObject is gone; QDBus(Abstract)Interface is now a QObject with auto-generated meta-object; QDBusIntrospection is marked private, since QMetaObject can be used now; lots of bugfixes.
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
/* -*- C++ -*-
|
|
*
|
|
* Copyright (C) 2005 Thiago Macieira <thiago@kde.org>
|
|
* Copyright (C) 2006 Trolltech AS. All rights reserved.
|
|
* Author: Thiago Macieira <thiago.macieira@trolltech.com>
|
|
*
|
|
* Licensed under the Academic Free License version 2.1
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef QDBUSXMLPARSER_H
|
|
#define QDBUSXMLPARSER_H
|
|
|
|
#include <QtCore/qmap.h>
|
|
#include <QtXml/qdom.h>
|
|
#include "qdbusmacros.h"
|
|
#include "qdbusintrospection_p.h"
|
|
|
|
/*!
|
|
\internal
|
|
*/
|
|
class QDBusXmlParser
|
|
{
|
|
QString m_service;
|
|
QString m_path;
|
|
QDomElement m_node;
|
|
|
|
public:
|
|
QDBusXmlParser(const QString& service, const QString& path,
|
|
const QString& xmlData);
|
|
QDBusXmlParser(const QString& service, const QString& path,
|
|
const QDomElement& node);
|
|
|
|
QDBusIntrospection::Interfaces interfaces() const;
|
|
QSharedDataPointer<QDBusIntrospection::Object> object() const;
|
|
QSharedDataPointer<QDBusIntrospection::ObjectTree> objectTree() const;
|
|
};
|
|
|
|
#endif
|