blob: adc62ba72c9887060d39143b37caf4ef40f534c9 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Author: Eray Ozkural (exa) <erayo@cs.bilkent.edu.tr>, (c) 2002
//
// Copyright: GNU LGPL: http://www.gnu.org/licenses/lgpl.html
#ifndef KBUFFER_H
#define KBUFFER_H
#include <qiodevice.h>
#include <vector>
#include <queue>
/**A buffer device for flexible and efficient buffers.
*@author Eray Ozkural (exa)
*/
class KBuffer : public QIODevice {
public:
KBuffer();
~KBuffer();
/** open a memory buffer */
bool open(int mode);
/** read in a block of memory */
Q_LONG readBlock(char* data, long unsigned int maxLen);
/** query buffer size */
Q_ULONG size() const;
/** No descriptions */
void flush();
/** Close buffer */
void close();
/** write a block of memory */
Q_LONG writeBlock(const char *data, long unsigned int maxLen);
/** read a byte */
int getch();
/** undo last getch()
*/
int ungetch(int);
/** write a byte */
int putch(int);
void* data() {
return &buf[0];
}
private:
std::vector<char> buf;
std::vector<char>::iterator bufPos;
};
#endif
|