HTTPServer/HTTPPage.h

18 lines
188 B
C
Raw Normal View History

2019-05-31 14:25:19 -07:00
#ifndef __HTTPPage_h__
#define __HTTPPage_h__
2022-06-29 11:38:44 -07:00
#include "HTTPParameters.h"
2019-05-31 14:25:19 -07:00
namespace http {
class HTTPPage {
2020-12-09 09:40:32 -08:00
public:
2022-06-29 11:38:44 -07:00
virtual int page(HTTPParameters &p);
2020-12-09 09:40:32 -08:00
2019-05-31 14:25:19 -07:00
};
}
#endif