qswiki/dynamic/dynamiccontent.cpp

10 lines
257 B
C++
Raw Normal View History

2022-03-27 08:36:25 +02:00
#include "dynamiccontent.h"
DynamicContent::DynamicContent(Template &templ, Database &database, UrlProvider &provider, Session &session)
2022-03-27 08:36:25 +02:00
{
this->templ = &templ;
this->database = &database;
this->urlProvider = &provider;
this->userSession = &session;
2022-03-27 08:36:25 +02:00
}