31 lines
632 B
C++
31 lines
632 B
C++
// Modifications Copyright 2018-current Getnamo. All Rights Reserved
|
|
|
|
|
|
// Copyright 2014 Vladimir Alyamkin. All Rights Reserved.
|
|
|
|
#include "ISIOJson.h"
|
|
#include "SIOJsonObject.h"
|
|
#include "SIOJsonValue.h"
|
|
#include "SIOJRequestJSON.h"
|
|
|
|
class FSIOJson : public ISIOJson
|
|
{
|
|
/** IModuleInterface implementation */
|
|
virtual void StartupModule() override
|
|
{
|
|
// @HACK Force classes to be compiled on shipping build
|
|
USIOJsonObject::StaticClass();
|
|
USIOJsonValue::StaticClass();
|
|
USIOJRequestJSON::StaticClass();
|
|
}
|
|
|
|
virtual void ShutdownModule() override
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FSIOJson, SIOJson)
|
|
|
|
DEFINE_LOG_CATEGORY(LogSIOJ);
|