1 | // |
2 | // HTTPBasicStreamBuf.h |
3 | // |
4 | // Library: Net |
5 | // Package: HTTP |
6 | // Module: HTTPBasicStreamBuf |
7 | // |
8 | // Definition of the HTTPBasicStreamBuf class. |
9 | // |
10 | // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. |
11 | // and Contributors. |
12 | // |
13 | // SPDX-License-Identifier: BSL-1.0 |
14 | // |
15 | |
16 | |
17 | #ifndef Net_HTTPBasicStreamBuf_INCLUDED |
18 | #define Net_HTTPBasicStreamBuf_INCLUDED |
19 | |
20 | |
21 | #include "Poco/Net/Net.h" |
22 | #include "Poco/BufferedStreamBuf.h" |
23 | #include "Poco/Net/HTTPBufferAllocator.h" |
24 | |
25 | |
26 | namespace Poco { |
27 | namespace Net { |
28 | |
29 | |
30 | typedef Poco::BasicBufferedStreamBuf<char, std::char_traits<char>, HTTPBufferAllocator> HTTPBasicStreamBuf; |
31 | |
32 | |
33 | } } // namespace Poco::Net |
34 | |
35 | |
36 | #endif // Net_HTTPBasicStreamBuf_INCLUDED |
37 | |