CellCycleModelOdeSolverExportWrapper.hpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2011
00004 
00005 University of Oxford means the Chancellor, Masters and Scholars of the
00006 University of Oxford, having an administrative office at Wellington
00007 Square, Oxford OX1 2JD, UK.
00008 
00009 This file is part of Chaste.
00010 
00011 Chaste is free software: you can redistribute it and/or modify it
00012 under the terms of the GNU Lesser General Public License as published
00013 by the Free Software Foundation, either version 2.1 of the License, or
00014 (at your option) any later version.
00015 
00016 Chaste is distributed in the hope that it will be useful, but WITHOUT
00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
00019 License for more details. The offer of Chaste under the terms of the
00020 License is subject to the License being interpreted in accordance with
00021 English Law and subject to any action against the University of Oxford
00022 being under the jurisdiction of the English Courts.
00023 
00024 You should have received a copy of the GNU Lesser General Public License
00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>.
00026 
00027 */
00028 
00029 #ifndef CELLCYCLEMODELODESOLVEREXPORTWRAPPER_HPP_
00030 #define CELLCYCLEMODELODESOLVEREXPORTWRAPPER_HPP_
00031 
00032 #include "CellCycleModelOdeSolver.hpp"
00033 
00034 // Possible ODE solvers.
00035 // We might be able to just do "class CvodeAdaptor;" etc rather than #include here,
00036 // but it probably wouldn't make much difference to build speed.
00037 #include "CvodeAdaptor.hpp"
00038 #include "BackwardEulerIvpOdeSolver.hpp"
00039 #include "EulerIvpOdeSolver.hpp"
00040 #include "HeunIvpOdeSolver.hpp"
00041 #include "RungeKutta2IvpOdeSolver.hpp"
00042 #include "RungeKutta4IvpOdeSolver.hpp"
00043 
00044 #endif /*CELLCYCLEMODELODESOLVEREXPORTWRAPPERHPP_*/
00045 
00046 // The following comes after the include guard, because it will expand to something
00047 // different in .hpp and .cpp contexts
00048 
00049 #ifdef EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER
00050 // Avoid re-definition error in .cpp
00051 #undef EXPORT_CCM_INTERNAL
00052 #undef EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER
00053 #endif // EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER
00054 
00055 #define EXPORT_CCM_INTERNAL(CCM_CLASS, ODE_SOLVER) \
00056     EXPORT_TEMPLATE_CLASS2(CellCycleModelOdeSolver, CCM_CLASS, ODE_SOLVER)
00057 
00058 #ifdef CHASTE_CVODE
00059 #ifdef EXPORT_CCM_CVODE
00060 // Avoid re-definition error in .cpp
00061 #undef EXPORT_CCM_CVODE
00062 #endif // EXPORT_CCM_CVODE
00063 #define EXPORT_CCM_CVODE(CCM_CLASS) EXPORT_CCM_INTERNAL(CCM_CLASS, CvodeAdaptor)
00064 #else
00065 #define EXPORT_CCM_CVODE(CCM_CLASS)
00066 #endif // CHASTE_CVODE
00067 
00068 #define EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER(CCM_CLASS)         \
00069     EXPORT_CCM_CVODE(CCM_CLASS)                               \
00070     EXPORT_CCM_INTERNAL(CCM_CLASS, BackwardEulerIvpOdeSolver) \
00071     EXPORT_CCM_INTERNAL(CCM_CLASS, EulerIvpOdeSolver)         \
00072     EXPORT_CCM_INTERNAL(CCM_CLASS, HeunIvpOdeSolver)          \
00073     EXPORT_CCM_INTERNAL(CCM_CLASS, RungeKutta2IvpOdeSolver)   \
00074     EXPORT_CCM_INTERNAL(CCM_CLASS, RungeKutta4IvpOdeSolver)
Generated on Thu Dec 22 13:00:04 2011 for Chaste by  doxygen 1.6.3