mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
13 lines
326 B
C++
13 lines
326 B
C++
#include "sampleplugin.h"
|
|
|
|
|
|
void CXmlSamplePlugin::registerMetaTypes()
|
|
{
|
|
qRegisterMetaType<BlackMiscTest::Dummy>("BlackMiscTest::Dummy");
|
|
qDBusRegisterMetaType<BlackMiscTest::Dummy>();
|
|
|
|
qRegisterMetaType<BlackMiscTest::DummyNoQ>("BlackMiscTest::DummyNoQ");
|
|
qDBusRegisterMetaType<BlackMiscTest::DummyNoQ>();
|
|
|
|
}
|