VPTissue Reference Manual
Default/components/time_evolver/factories.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2011-2016 Universiteit Antwerpen
3  *
4  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
5  * the European Commission - subsequent versions of the EUPL (the "Licence");
6  * You may not use this work except in compliance with the Licence.
7  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the Licence is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the Licence for the specific language governing
13  * permissions and limitations under the Licence.
14  */
20 #include "factories.h"
21 
22 #include "Grow.h"
23 #include "Housekeep.h"
24 #include "HousekeepGrow.h"
25 #include "Transport.h"
26 #include "VLeaf.h"
27 #include "VPTissue.h"
28 
29 #include <boost/functional/value_factory.hpp>
30 #include <utility>
31 
32 using namespace std;
33 
34 namespace SimPT_Default {
35 namespace TimeEvolver {
36 
38 {{
39  make_pair("Grow", boost::value_factory<Grow>()),
40  make_pair("Housekeep", boost::value_factory<Housekeep>()),
41  make_pair("HousekeepGrow", boost::value_factory<HousekeepGrow>()),
42  make_pair("Transport", boost::value_factory<Transport>()),
43  make_pair("VLeaf", boost::value_factory<VLeaf>()),
44  make_pair("VPTissue", boost::value_factory<VPTissue>())
45 }};
46 
47 } // namespace
48 } // namespace
Interface for SimPT time evolver.
STL namespace.
Time evolver for Housekeeping only.
Namespace for components of the Default model group.
Time evolver for diffusion and active transport.
TimeEvolver component factory map.
Primary template never gets instantiated.
Time evolver for Housekeep plus Grow.
const ComponentTraits< TimeEvolverTag >::MapType g_component_factories
Stores cell chemistry component factories.
Time evolver for Grow only.
Interface for time evolver of Merks et al.