DCL 4.0
Loading...
Searching...
No Matches
HttpStream.h
Go to the documentation of this file.
1#ifndef __DCL_HTTP_STREAM_H__
2#define __DCL_HTTP_STREAM_H__ 20060104
3
4#ifndef __DCL_INPUT_STREAM_H__
5#include <dcl/InputStream.h>
6#endif
7#ifndef __DCL_OUTPUT_STREAM_H__
8#include <dcl/OutputStream.h>
9#endif
10
11__DCL_BEGIN_NAMESPACE
12
14
16{
18public:
20
21 virtual size_t read(void* _buf, size_t _n)
23
24protected:
26};
27
29{
31public:
33
34 virtual OutputStream& write(const void* _buf, size_t _n)
36
37private:
38 HttpServletContext* __ctx;
39};
40
41__DCL_END_NAMESPACE
42
43#endif // __DCL_HTTP_STREAM_H__
44
#define DCLCAPI
Definition Config.h:100
#define __DCL_THROWS1(e)
Definition Config.h:167
#define DECLARE_CLASSINFO(class_name)
Definition Object.h:210
HttpServletContext * __ctx
Definition HttpStream.h:25