summaryrefslogtreecommitdiff
path: root/src/master.cpp
blob: f05b79ae9b9ecb5aeb4f871d93166aace756dadd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "master.hpp"
#include "strusCms.hpp"

#include <cppcms/service.h>

namespace apps {

master::master( strusCms &cms )
	: cms( cms ),
	application( cms.service( ) )
{
}

}