Add DynamicContentFactory
Этот коммит содержится в:
родитель
51b259f385
Коммит
6dbe8d34dc
28
dynamic/dynamiccontentfactory.h
Обычный файл
28
dynamic/dynamiccontentfactory.h
Обычный файл
@ -0,0 +1,28 @@
|
|||||||
|
#ifndef DYNAMICCONTENTFACTORY_H
|
||||||
|
#define DYNAMICCONTENTFACTORY_H
|
||||||
|
|
||||||
|
#include "dynamiccontent.h"
|
||||||
|
|
||||||
|
class DynamicContentFactory
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
Template *templ;
|
||||||
|
Database *db;
|
||||||
|
UrlProvider *urlProvider;
|
||||||
|
|
||||||
|
public:
|
||||||
|
DynamicContentFactory(Template &templ, Database &db, UrlProvider &urlProvider)
|
||||||
|
{
|
||||||
|
this->templ = &templ;
|
||||||
|
this->db = &db;
|
||||||
|
this->urlProvider = &urlProvider;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class T> inline std::shared_ptr<T> createDynamicContent()
|
||||||
|
{
|
||||||
|
return std::make_shared<T>(*this->templ, *this->db, *this->urlProvider);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
#endif // DYNAMICCONTENTFACTORY_H_INCLUDED
|
Загрузка…
Ссылка в новой задаче
Block a user