1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// Copyright Maarten L. Hekkelman, Radboud University 2008-2012.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef SOAP_HTTP_REQUEST_HANDLER_HPP
#define SOAP_HTTP_REQUEST_HANDLER_HPP
#include <zeep/http/request.hpp>
#include <zeep/http/reply.hpp>
namespace zeep { namespace http {
/// Simply an interface
class request_handler
{
public:
virtual void handle_request(boost::asio::ip::tcp::socket& socket,
const request& req, reply& reply) = 0;
};
}
}
#endif
|