18 lines
188 B
C++
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
|