123456789101112131415161718192021222324252627282930 |
- // 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);
|