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