summaryrefslogtreecommitdiff
path: root/project2/ice/iceModule.cpp
blob: 1738bef1d1e801132f04f15b6f0d5b68856a83f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <pch.hpp>
#include "iceModule.h"
#include "iceDaemon.h"
#include "instanceStore.impl.h"

IceDaemonModule::IceDaemonModule(const IceDaemon * id) :
	iceDaemon(id)
{
}

void
IceDaemonModule::executeView(const std::string & name, RowSetPresenterPtr p, const ParamMap & params) const {
	iceDaemon->executeView(name, p, params);
}

void
IceDaemonModule::executeTask(const std::string & name, const ParamMap & params) const {
	iceDaemon->executeTask(name, params);
}

INSTANTIATESTORE(std::string, IceDaemonAdapterHandlerLoader);