diff options
Diffstat (limited to 'options/metatype.hpp')
-rw-r--r-- | options/metatype.hpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/options/metatype.hpp b/options/metatype.hpp index c889766a..0c78f556 100644 --- a/options/metatype.hpp +++ b/options/metatype.hpp @@ -1,13 +1,10 @@ #pragma once -#include <QMetaType> #include <QList> #include <QString> #include <QPointF> -#include <QDataStream> #include <QDebug> -#include "export.hpp" #include "slider.hpp" Q_DECLARE_METATYPE(QList<double>) @@ -18,21 +15,4 @@ Q_DECLARE_METATYPE(QList<QString>) Q_DECLARE_METATYPE(QList<QPointF>) Q_DECLARE_METATYPE(::options::slider_value) -namespace options { -namespace detail { -struct custom_type_initializer final -{ - static const custom_type_initializer singleton; - - custom_type_initializer(); - - template<typename t> static void declare_for_type(const char* str) - { - qRegisterMetaType<t>(str); - qRegisterMetaTypeStreamOperators<t>(); - } -}; - -} -} |