Major Update & Bug fixes:

- FileCore:
  - Replace dlNone -> dlLow
  - Remove temporary code used by CBaslerCamera
- Function Core:
  - Add method SetDebugLevel()
  - Remove global parameter BaseMember;
- JSONparse:
  - Print Bool parameters as true/false, not 1/0
- SelectCore:
  - Add method SetDebugLevel()
- SignalCore:
  - Replace dlNone -> dlLow
This commit is contained in:
Charl Wentzel
2017-07-09 16:31:47 +02:00
parent b900d735b9
commit b7ed169730
8 changed files with 36 additions and 40 deletions

View File

@@ -58,7 +58,6 @@ protected:
// Configuration
CDataTree * DataTree;
TDataMember * BaseMember;
// Channels
TChannel * FirstChannel;
@@ -85,7 +84,9 @@ public:
CFunctionCore( const char * FunctionName, CLogCore * pLog, EDebugLevel pDebugLevel, int pOuputDisplay );
virtual ~CFunctionCore();
// Configuration
virtual bool LoadConfig( CDataTree * DataTree, const char * BasePath );
bool SetDebugLevel( EDebugLevel pDebugLevel );
// Miscellaneous
inline const char * GetName() { return Name; };