qswiki/dynamic/dynamiccontent.h

29 lines
554 B
C
Raw Normal View History

2022-03-27 08:36:25 +02:00
#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;
std::string argument;
2022-03-27 08:36:25 +02:00
public:
DynamicContent(Template &templ, Database &database, UrlProvider &urlProvider);
virtual std::string render() = 0;
virtual void setArgument(std::string argument)
{
this->argument = argument;
}
2022-03-27 08:36:25 +02:00
virtual ~DynamicContent()
{
}
};
#endif // DYNAMICCONTENT_H