indent classes, align by spaces

This commit is contained in:
Garux
2021-03-24 00:25:15 +03:00
parent 5b1b9b5e6c
commit 2222100316
450 changed files with 42485 additions and 42239 deletions

View File

@@ -26,19 +26,19 @@
class ScriptLibraryAPI
{
_QERScripLibTable m_scriptlibrary;
_QERScripLibTable m_scriptlibrary;
public:
typedef _QERScripLibTable Type;
STRING_CONSTANT( Name, "*" );
typedef _QERScripLibTable Type;
STRING_CONSTANT( Name, "*" );
ScriptLibraryAPI(){
m_scriptlibrary.m_pfnNewScriptTokeniser = &NewScriptTokeniser;
m_scriptlibrary.m_pfnNewSimpleTokeniser = &NewSimpleTokeniser;
m_scriptlibrary.m_pfnNewSimpleTokenWriter = &NewSimpleTokenWriter;
}
_QERScripLibTable* getTable(){
return &m_scriptlibrary;
}
ScriptLibraryAPI(){
m_scriptlibrary.m_pfnNewScriptTokeniser = &NewScriptTokeniser;
m_scriptlibrary.m_pfnNewSimpleTokeniser = &NewSimpleTokeniser;
m_scriptlibrary.m_pfnNewSimpleTokenWriter = &NewSimpleTokenWriter;
}
_QERScripLibTable* getTable(){
return &m_scriptlibrary;
}
};
#include "modulesystem/singletonmodule.h"