00001 /* 00002 00003 Copyright (C) University of Oxford, 2005-2009 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 #ifndef ABSTRACTCELLKILLER_HPP_ 00029 #define ABSTRACTCELLKILLER_HPP_ 00030 00031 #include "AbstractTissue.hpp" 00032 00033 #include <boost/serialization/access.hpp> 00034 #include <boost/serialization/is_abstract.hpp> 00035 00036 00040 template <unsigned SPACE_DIM> 00041 class AbstractCellKiller 00042 { 00043 public: 00044 00050 AbstractCellKiller(AbstractTissue<SPACE_DIM>* pTissue); 00051 00055 virtual ~AbstractCellKiller() {}; 00056 00062 virtual void TestAndLabelCellsForApoptosisOrDeath()=0; 00063 00069 const AbstractTissue<SPACE_DIM>* GetTissue() const; 00070 00071 protected: 00072 00074 AbstractTissue<SPACE_DIM> *mpTissue; 00075 00076 private: 00077 00079 friend class boost::serialization::access; 00086 template<class Archive> 00087 void serialize(Archive & archive, const unsigned int version) 00088 { 00089 // Archiving of mpTissue is implemented in load_construct_data of subclasses 00090 } 00091 00092 }; 00093 00094 template <unsigned SPACE_DIM> 00095 AbstractCellKiller<SPACE_DIM>::AbstractCellKiller(AbstractTissue<SPACE_DIM>* pTissue) 00096 : mpTissue(pTissue) 00097 { 00098 } 00099 00100 template <unsigned SPACE_DIM> 00101 const AbstractTissue<SPACE_DIM>* AbstractCellKiller<SPACE_DIM>::GetTissue() const 00102 { 00103 return mpTissue; 00104 } 00105 00106 namespace boost 00107 { 00108 namespace serialization 00109 { 00115 template<unsigned DIM> 00116 struct is_abstract<AbstractCellKiller<DIM> > 00117 { 00119 typedef mpl::bool_<true> type; 00121 BOOST_STATIC_CONSTANT(bool, value=true); 00122 }; 00123 } 00124 } 00125 00126 00127 #endif /*ABSTRACTCELLKILLER_HPP_*/