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
18namespace Poco {
19namespace Net {
20
21
22HTTPServerResponse::HTTPServerResponse()
23{
24}
25
26
27HTTPServerResponse::~HTTPServerResponse()
28{
29}
30
31
32} } // namespace Poco::Net
33