Begin dynamic content generators

This commit is contained in:
2022-03-27 08:36:25 +02:00
parent a4a45d9add
commit a524674149
5 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include "dynamiccontent.h"
DynamicContent::DynamicContent(Template &templ, Database &database, UrlProvider &provider)
{
this->templ = &templ;
this->database = &database;
this->urlProvider = &provider;
}