|

INTRODUCTION
Overview
Download and Install
Documentation
Publications
REPOSITORY
Libraries
DEVELOPER
Dev Guide
Dashboard
PEOPLE
Contributors
Users

Project
Download
Mailing lists
|
|
|
28 #ifndef __LOGREADERPORT_H
29 #define __LOGREADERPORT_H
86 ssize_t Read ( void * const buffer, size_t count);
88 ssize_t ReadFull ( void * const buffer, size_t count);
90 ssize_t BytesAvailable ();
92 ssize_t BytesAvailableWait ();
94 ssize_t Write ( const void * const buffer, size_t count);
100 std::string GetStatus () const;
102 void SetTimeout ( Timeout timeout);
104 void SetCanRead ( bool canRead);
106 void SetCanWrite ( bool canWrite);
108 bool IsOpen () const;
112 std::string _logFileName;
113 unsigned int _strictness;
118 bool ProcessOption ( const std::string &option, const std::string &value);
119 void CheckPort ( bool read);
126 #endif // __LOGREADERPORT_H
|
|