13 lines
330 B
C++
13 lines
330 B
C++
#include "tgtsmlplatforminputcontextplugin.h"
|
|
|
|
TgtsmlPlatformInputContext * TgtsmlPlatformInputContextPlugin::create(const QString &key, const QStringList ¶mlist)
|
|
{
|
|
Q_UNUSED(paramlist)
|
|
|
|
if(key.compare("tgtsml",Qt::CaseInsensitive) == 0)
|
|
{
|
|
return new TgtsmlPlatformInputContext;
|
|
}
|
|
return nullptr;
|
|
}
|