blob: c1e035ec786be1c95c38486e817122a21e49706a (
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, Slicer::ModelPartPtr mpp, const ParamMap & params) const {
iceDaemon->executeView(name, mpp, params);
}
void
IceDaemonModule::executeTask(const std::string & name, const ParamMap & params) const {
iceDaemon->executeTask(name, params);
}
INSTANTIATESTORE(std::string, IceDaemonAdapterHandlerLoader);
|