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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user