mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
Added HTMLPaginator to the build.
This commit is contained in:
parent
9b1d5d9e87
commit
066129b2ba
@ -24,6 +24,7 @@ sources = [
|
||||
|
||||
"html/html_builder_bind.cpp",
|
||||
"html/html_builder.cpp",
|
||||
"html/paginator.cpp",
|
||||
|
||||
"http_server_simple/http_server_simple.cpp",
|
||||
"http_server_simple/web_server_simple.cpp",
|
||||
|
@ -32,6 +32,7 @@ def get_doc_classes():
|
||||
|
||||
"HTMLBuilder",
|
||||
"HTMLTag",
|
||||
"HTMLPaginator",
|
||||
|
||||
"WebServerSimple",
|
||||
|
||||
|
@ -27,6 +27,7 @@ SOFTWARE.
|
||||
#include "file_cache.h"
|
||||
|
||||
#include "html/html_builder_bind.h"
|
||||
#include "html/paginator.h"
|
||||
|
||||
#include "http/csrf_token.h"
|
||||
#include "http/http_server_enums.h"
|
||||
@ -53,6 +54,8 @@ void register_web_types() {
|
||||
ClassDB::register_class<_HTMLBuilder>();
|
||||
ClassDB::register_class<_HTMLTag>();
|
||||
|
||||
ClassDB::register_class<HTMLPaginator>();
|
||||
|
||||
ClassDB::register_class<FileCache>();
|
||||
|
||||
ClassDB::register_class<HTTPServerEnums>();
|
||||
|
Loading…
Reference in New Issue
Block a user