summaryrefslogtreecommitdiff
path: root/include/Buffer.h
blob: cf57cb62bd66738a7192b820d7d532b2ad4608dd (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
#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();
    Buffer operator=(const Buffer &);
  private:
    char * buffer;
    int realsiz, bufsiz, ptr;
};

#else
#error This only works with a C++ compiler
#endif
#endif