mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-19 08:46:41 +01:00
33 lines
438 B
C++
33 lines
438 B
C++
//
|
|
// HTTPServerRequest.cpp
|
|
//
|
|
// Library: Net
|
|
// Package: HTTPServer
|
|
// Module: HTTPServerRequest
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Net/HTTPServerRequest.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Net {
|
|
|
|
|
|
HTTPServerRequest::HTTPServerRequest()
|
|
{
|
|
}
|
|
|
|
|
|
HTTPServerRequest::~HTTPServerRequest()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Net
|