blob: 7b4f465550b3e246def49453b9aaf2d1b89e1b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/** --------------------------------------------------------------------
* @file stdiodevice.h
* @brief Declaration of the StdIODevice class.
* @author Andreas Aardal Hanssen
* @date 2002, 2003
* ----------------------------------------------------------------- **/
#ifndef stdiodevice_h_included
#define stdiodevice_h_included
#include "iodevice.h"
namespace Binc {
class StdIODevice : public IODevice {
public:
StdIODevice(int flags);
~StdIODevice();
std::string service(void) const;
bool canRead(void) const;
protected:
bool waitForWrite(void) const;
bool waitForRead(void) const;
WriteResult write(void);
bool fillInputBuffer(void);
};
}
#endif
|