status-desktop/src-cpp/dotherside/DOtherSide.cpp

13 lines
423 B
C++
Raw Normal View History

2022-01-06 19:29:19 +00:00
#include "DOtherSide.h"
#include "SpellChecker.h"
#include "StatusSyntaxHighlighter.h"
#include "StatusWindow.h"
void DOtherSide::registerMetaTypes()
{
qRegisterMetaType<QVector<int>>();
qmlRegisterType<StatusWindow>("DotherSide", 0, 1, "StatusWindow");
qmlRegisterType<StatusSyntaxHighlighterHelper>("DotherSide", 0, 1, "StatusSyntaxHighlighter");
qmlRegisterType<SpellChecker>("DotherSide", 0, 1, "SpellChecker");
}