mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
28 lines
579 B
C
28 lines
579 B
C
|
#ifndef ALLIANCE_NODE_H
|
||
|
#define ALLIANCE_NODE_H
|
||
|
|
||
|
#include "core/containers/vector.h"
|
||
|
#include "core/string.h"
|
||
|
|
||
|
#include "web_modules/admin_panel/admin_node.h"
|
||
|
|
||
|
class Request;
|
||
|
class FormValidator;
|
||
|
class QueryResult;
|
||
|
|
||
|
class AllianceNode : public AdminNode {
|
||
|
RCPP_OBJECT(AllianceNode, AdminNode);
|
||
|
|
||
|
public:
|
||
|
void handle_request_default(Request *request);
|
||
|
|
||
|
void admin_handle_request_main(Request *request);
|
||
|
String admin_get_section_name();
|
||
|
void admin_add_section_links(Vector<AdminSectionLinkInfo> *links);
|
||
|
bool admin_full_render();
|
||
|
|
||
|
AllianceNode();
|
||
|
~AllianceNode();
|
||
|
};
|
||
|
|
||
|
#endif
|