1 | // |
2 | // HTTPServerResponse.cpp |
3 | // |
4 | // Library: Net |
5 | // Package: HTTPServer |
6 | // Module: HTTPServerResponse |
7 | // |
8 | // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/Net/HTTPServerResponse.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace Net { |
20 | |
21 | |
22 | HTTPServerResponse::HTTPServerResponse() |
23 | { |
24 | } |
25 | |
26 | |
27 | HTTPServerResponse::~HTTPServerResponse() |
28 | { |
29 | } |
30 | |
31 | |
32 | } } // namespace Poco::Net |
33 | |