1 |
bearsoft |
1.1 |
#ifndef __HomePageHandler_H__
|
2 |
|
|
#define __HomePageHandler_H__
|
3 |
|
|
|
4 |
|
|
#include "../../String/String.h"
|
5 |
|
|
#include "../../Binary/BinaryInput.h"
|
6 |
|
|
#include "../../LinkedList/StringLinkedList.h"
|
7 |
|
|
#include "../../String/ConfigInput.h"
|
8 |
|
|
#include "../../NetWork/PacketInfo.h"
|
9 |
|
|
#include "../../LinkedList/ObjectLinkedList.h"
|
10 |
|
|
#include "../../Html/HtmlMatrisList.h"
|
11 |
|
|
#include "../../Html/Button.h"
|
12 |
|
|
#include "../../Html/Link.h"
|
13 |
|
|
|
14 |
|
|
#include "Header.h"
|
15 |
|
|
|
16 |
|
|
class HomePageHandler
|
17 |
|
|
{
|
18 |
|
|
|
19 |
|
|
public:
|
20 |
|
|
|
21 |
|
|
HomePageHandler(Header *iHeader);
|
22 |
|
|
~HomePageHandler();
|
23 |
|
|
|
24 |
|
|
bool init();
|
25 |
|
|
bool check();
|
26 |
|
|
|
27 |
|
|
private:
|
28 |
|
|
|
29 |
|
|
Header *header;
|
30 |
|
|
|
31 |
|
|
};
|
32 |
|
|
|
33 |
|
|
#endif |