Important Update:

- LogCore:
  - Removed global DebugLevel var, now passed as parameter
  - Implemented binary output values
- FunctionCore, SelectCore and SelectableCore:
  - internal DebugLevel param implemented
  - new internal DisplayOutput param (Normal/Hex/Bin)
- BufferCore:
  - Bug fix: allow for empty search string/marker
This commit is contained in:
Charl Wentzel
2016-06-09 06:53:09 +02:00
parent 13b0a4736c
commit b418fa73e0
9 changed files with 115 additions and 101 deletions

View File

@@ -116,9 +116,12 @@ protected:
int MaxFD;
timeval Timeout;
// Output
EDebugLevel DebugLevel;
public:
// Life Cycle
CSelect( long SelectTimeout );
CSelect( long SelectTimeout, EDebugLevel DebugLevel );
~CSelect();
// Manage FDs
@@ -182,7 +185,7 @@ protected:
public:
// Life Cycle
CSelectableCore( const char * Name, CSelect * Selector );
CSelectableCore( const char * Name, CSelect * Selector, EDebugLevel pDebugLevel, int pOuputDisplay );
~CSelectableCore();
// Finding Handles