HTTPServer/HTTPPage.h
2022-06-29 11:38:44 -07:00

18 lines
188 B
C++

#ifndef __HTTPPage_h__
#define __HTTPPage_h__
#include "HTTPParameters.h"
namespace http {
class HTTPPage {
public:
virtual int page(HTTPParameters &p);
};
}
#endif