Important Update:

- Converted Select functions into new class CSelectCore
- Move Read/Write code from main() to SelectableCore Read()/Write()
- Pass CSelectCore object to CSelectableCore on create
- Updated SelectCore Read/Write lists directly from SelectableCore
- SelectCore->Test() checks all FDs directly and call Read/Write functions
- Improved checking/validating for methods in SelectableCore
This commit is contained in:
Charl Wentzel
2016-05-24 15:02:51 +02:00
parent dcfbd85efa
commit e83c09ecb6
4 changed files with 361 additions and 113 deletions

View File

@@ -55,8 +55,8 @@ public:
bool FindChar( char SearchChar, int &FoundPos, int StartPos = 0 );
// Miscellaneous
int Size() { return BufSize; };
int Len() { return BufLen; };
inline int Size() { return BufSize; };
inline int Len() { return BufLen; };
};
//---------------------------------------------------------------------------