Elm  1.0
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BufferedOutStream.h
1 /*
2  * $Id$
3  * BufferedOutStream class interface
4  *
5  * This file is part of OTAWA
6  * Copyright (c) 2009, IRIT UPS.
7  *
8  * OTAWA is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * OTAWA is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with OTAWA; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 #ifndef ELM_IO_BUFFERED_OUT_STREAM_H_
23 #define ELM_IO_BUFFERED_OUT_STREAM_H_
24 
25 #include <elm/io/OutStream.h>
26 
27 namespace elm { namespace io {
28 
29 // BufferedOutStream class
31 public:
32  static const int default_size = 4096;
33 
34  BufferedOutStream(OutStream& output, size_t size = default_size);
35  virtual ~BufferedOutStream(void);
36 
37  // OutStream override
38  virtual int write(const char *buffer, int size);
39  virtual int flush(void);
40  virtual CString lastErrorMessage(void);
41 
42 private:
43  OutStream& out;
44  char *buf;
45  size_t top, buf_size;
46 };
47 
48 } } // elm::io
49 
50 #endif /* ELM_IO_BUFFERED_OUT_STREAM_H_ */
Definition: CString.h:17
static const int default_size
Definition: BufferedOutStream.h:32
Definition: OutStream.h:30
uint32 size
Definition: int.h:41
virtual int flush(void)
Definition: io_BufferedOutStream.cpp:74
virtual CString lastErrorMessage(void)
Definition: io_BufferedOutStream.cpp:87
virtual int write(const char *buffer, int size)
Definition: io_BufferedOutStream.cpp:54
virtual ~BufferedOutStream(void)
Definition: io_BufferedOutStream.cpp:46
BufferedOutStream(OutStream &output, size_t size=default_size)
Definition: io_BufferedOutStream.cpp:37
Definition: BufferedOutStream.h:30