blob: c6bfcf4e102f4751ba8e9ba837259da66de185bc (
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
|
#ifndef __BUFFER_H__
#define __BUFFER_H__
#ifdef __cplusplus
#include <Exceptions.h>
#include <Handle.h>
#ifndef realloc_threshold
#define realloc_threshold 256
#endif
class Buffer: public Handle {
public:
Buffer();
~Buffer();
virtual ssize_t write(const void *buf, size_t count);
virtual ssize_t read(void *buf, size_t count);
virtual bool CanRead();
virtual bool CanWrite();
virtual String GetName();
private:
char * buffer;
int realsiz, bufsiz, ptr;
};
#else
#error This only works with a C++ compiler
#endif
#endif
|