mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
16 lines
306 B
C++
16 lines
306 B
C++
#ifndef TimeHandler_INCLUDED
|
|
#define TimeHandler_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/HTTPRequestHandler.h"
|
|
|
|
|
|
class TimeHandler: public Poco::Net::HTTPRequestHandler
|
|
{
|
|
public:
|
|
void handleRequest(Poco::Net::HTTPServerRequest& request, Poco::Net::HTTPServerResponse& response);
|
|
};
|
|
|
|
|
|
#endif // TimeHandler_INCLUDED
|