summaryrefslogtreecommitdiffstats
path: root/qt/qdbusvariant.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt/qdbusvariant.h')
-rw-r--r--qt/qdbusvariant.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/qt/qdbusvariant.h b/qt/qdbusvariant.h
deleted file mode 100644
index 0a6d41e5..00000000
--- a/qt/qdbusvariant.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* qdbusvariant.h DBUS variant struct
- *
- * Copyright (C) 2005 Harald Fernengel <harry@kdevelop.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 QDBUSVARIANT_H
-#define QDBUSVARIANT_H
-
-#include "qdbusmacros.h"
-#include "qdbustype.h"
-#include <qvariant.h>
-
-struct QDBUS_EXPORT QDBusVariant
-{
- QDBusType type;
- QVariant value;
-
- inline QDBusVariant()
- { }
- inline QDBusVariant(const QVariant &variant) : value(variant)
- { }
- inline QDBusVariant(const QVariant &variant, const QDBusType &forcetype)
- : type(forcetype), value(variant)
- { }
-
- inline operator const QVariant &() const
- { return value; }
-};
-Q_DECLARE_METATYPE(QDBusVariant)
-
-#endif
-