summaryrefslogtreecommitdiffhomepage
path: root/options/metatype.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'options/metatype.hpp')
-rw-r--r--options/metatype.hpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/options/metatype.hpp b/options/metatype.hpp
deleted file mode 100644
index 68480b55..00000000
--- a/options/metatype.hpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#pragma once
-
-#include <QMetaType>
-#include <QList>
-#include <QString>
-#include <QPointF>
-#include <QDataStream>
-#include <QDebug>
-
-#include "export.hpp"
-
-Q_DECLARE_METATYPE(QList<double>)
-Q_DECLARE_METATYPE(QList<float>)
-Q_DECLARE_METATYPE(QList<int>)
-Q_DECLARE_METATYPE(QList<bool>)
-Q_DECLARE_METATYPE(QList<QString>)
-Q_DECLARE_METATYPE(QList<QPointF>)
-
-namespace options {
-namespace detail {
-
-struct custom_type_initializer final
-{
- static const custom_type_initializer singleton;
-
- custom_type_initializer();
-
- template<typename t> static inline void declare_for_type(const char* str)
- {
- qRegisterMetaType<t>(str);
- qRegisterMetaTypeStreamOperators<t>();
- }
-};
-
-}
-}