Added HTMLPaginator to the build.

This commit is contained in:
Relintai 2022-07-02 22:18:14 +02:00
parent 9b1d5d9e87
commit 066129b2ba
3 changed files with 5 additions and 0 deletions

View File

@ -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",

View File

@ -32,6 +32,7 @@ def get_doc_classes():
"HTMLBuilder",
"HTMLTag",
"HTMLPaginator",
"WebServerSimple",

View File

@ -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>();