VPTissue Reference Manual
Default/components/cell2cell_transport/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 "AuxinGrowth.h"
23 #include "Basic.h"
24 #include "Meinhardt.h"
25 #include "NoOp.h"
26 #include "Plain.h"
27 #include "SmithPhyllotaxis.h"
28 #include "Source.h"
29 #include "TestCoupling.h"
30 #include "Wortel.h"
31 #include "WrapperModel.h"
32 
33 #include <boost/functional/value_factory.hpp>
34 #include <utility>
35 
36 namespace SimPT_Default {
37 namespace CellToCellTransport {
38 
39 // ------------------------------------------------------------------------------
40 // Add new classes here (but do not forget to include the header also).
41 // ------------------------------------------------------------------------------
42 const typename ComponentTraits<CellToCellTransportTag>::MapType g_component_factories
43 {{
44  std::make_pair("AuxinGrowth", boost::value_factory<AuxinGrowth>()),
45  std::make_pair("Basic", boost::value_factory<Basic>()),
46  std::make_pair("Meinhardt", boost::value_factory<Meinhardt>()),
47  std::make_pair("NoOp", boost::value_factory<NoOp>()),
48  std::make_pair("Plain", boost::value_factory<Plain>()),
49  std::make_pair("SmithPhyllotaxis", boost::value_factory<SmithPhyllotaxis>()),
50  std::make_pair("Source", boost::value_factory<Source>()),
51  std::make_pair("TestCoupling", boost::value_factory<TestCoupling>()),
52  std::make_pair("Wortel", boost::value_factory<Wortel>()),
53  std::make_pair("WrapperModel", boost::value_factory<WrapperModel>())
54 }};
55 
56 } // namespace
57 } // namespace
CellToCellTransport for SmithPhyllotaxis model.
Source CellToCellTransport component.
CellToCellTransport component for the TestCoupling model.
Namespace for components of the Default model group.
const ComponentTraits< CellToCellTransportTag >::MapType g_component_factories
Stores cell chemistry component factories.
CellToCellTransport for Wortel model.
CellToCellTransport for AuxinGrowth model.
Basic CellToCellTransport component.
CellToCellTransport component factory map.
CellToCellTransport for Wrapper model.
CellToCellTransport for Meinhardt model.
CellToCellTransport NoOp.
CellToCellTransport Plain model.