Minor Update:
- BufferCore: Set BufSize as class constant - TimingCore: Add new function Timeout()
This commit is contained in:
@@ -20,8 +20,8 @@ class CBuffer
|
||||
{
|
||||
private:
|
||||
// Buffer Definition
|
||||
char * Buffer; // Memory allocated to buffer
|
||||
int BufSize; // Size of allocated buffer
|
||||
char * Buffer; // Memory allocated to buffer
|
||||
const int BufSize; // Size of allocated buffer
|
||||
|
||||
// Buffer pointers
|
||||
int BufStart; // First unread characters on buffer
|
||||
|
||||
Reference in New Issue
Block a user