Important Update:

- ApplicationCore:
  - Rename ConfigParser -> JSONparser
  - Make JSONparser a public parameter
- DataTreeCore:
  - Bug fix: Insufficient memory allocation on SetValue if Len = -1
This commit is contained in:
Charl Wentzel
2017-07-29 12:45:45 +02:00
parent b7033bea81
commit e71157b9ec
3 changed files with 12 additions and 14 deletions

View File

@@ -47,9 +47,6 @@ protected:
// List
TFunctionItem * FirstFunction;
// Configuration
CJSONparse * ConfigParser = NULL;
// Output
EDebugLevel LogLevel;
int LogOutput;
@@ -66,6 +63,7 @@ public:
CDataTree * DataTree;
CLogCore * Log;
CSelect * Selector;
CJSONparse * JSONparser = NULL;
// Life Cycle
CApplication( EDebugLevel pDebugLevel );