aboutsummaryrefslogtreecommitdiffstats
path: root/src/webchannel/variantargument_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webchannel/variantargument_p.h')
-rw-r--r--src/webchannel/variantargument_p.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/webchannel/variantargument_p.h b/src/webchannel/variantargument_p.h
deleted file mode 100644
index 09b864f..0000000
--- a/src/webchannel/variantargument_p.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
-
-#ifndef VARIANTARGUMENT_H
-#define VARIANTARGUMENT_H
-
-//
-// W A R N I N G
-// -------------
-//
-// This file is not part of the Qt API. It exists purely as an
-// implementation detail. This header file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
-
-#include <QVariant>
-#include <private/qglobal_p.h>
-
-QT_BEGIN_NAMESPACE
-
-/**
- * RAII QVariant to Q[Generic]Argument conversion
- */
-struct VariantArgument
-{
- operator QGenericArgument() const
- {
- if (type == QMetaType::QVariant) {
- return QGenericArgument("QVariant", &value);
- }
- if (!value.isValid()) {
- return QGenericArgument();
- }
- return QGenericArgument(value.typeName(), value.constData());
- }
-
- QVariant value;
- int type;
-};
-
-QT_END_NAMESPACE
-
-#endif // VARIANTARGUMENT_H