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

22
dynamic/dynamiccontent.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef DYNAMICCONTENT_H
#define DYNAMICCONTENT_H
#include <string>
#include "../database/database.h"
#include "../template.h"
#include "../urlprovider.h"
class DynamicContent
{
protected:
Template *templ;
Database *database;
UrlProvider *urlProvider;
public:
DynamicContent(Template &templ, Database &database, UrlProvider &urlProvider);
virtual std::string render() = 0;
virtual ~DynamicContent()
{
}
};
#endif // DYNAMICCONTENT_H