VPTissue Reference Manual
Default/components/cell_daughters/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 "Auxin.h"
23 #include "BasicPIN.h"
24 #include "NoOp.h"
25 #include "Perimeter.h"
26 #include "PIN.h"
27 #include "SmithPhyllotaxis.h"
28 #include "Wortel.h"
29 #include "WrapperModel.h"
30 
31 #include <boost/functional/value_factory.hpp>
32 #include <utility>
33 
34 namespace SimPT_Default {
35 namespace CellDaughters {
36 
37 const typename ComponentTraits<CellDaughtersTag>::MapType g_component_factories
38 {{
39  std::make_pair("Auxin", boost::value_factory<Auxin>()),
40  std::make_pair("BasicPIN", boost::value_factory<BasicPIN>()),
41  std::make_pair("NoOp", boost::value_factory<NoOp>()),
42  std::make_pair("Perimeter", boost::value_factory<Perimeter>()),
43  std::make_pair("PIN", boost::value_factory<PIN>()),
44  std::make_pair("SmithPhyllotaxis", boost::value_factory<SmithPhyllotaxis>()),
45  std::make_pair("Wortel", boost::value_factory<Wortel>()),
46  std::make_pair("WrapperModel", boost::value_factory<WrapperModel>())
47 }};
48 
49 } // namespace
50 } // namespace
Interface for CellDaughters::Auxin.
CellDaughters component factory map.
Interface/Implementation for CellDaughters::NoOp.
Namespace for components of the Default model group.
CellDaughters::SmithPhyllotaxis header file.
CellDaughters for Wortel model.
CellDaughter component for Wrapper model.
const ComponentTraits< CellDaughtersTag >::MapType g_component_factories
Stores cell chemistry component factories.
Interface for CellDaughters::PIN.
CellDaughters::Perimeter header file.
Interface for CellDaughters::BasicPIN.