36#ifndef TARGETEDCELLKILLER_HPP_
37#define TARGETEDCELLKILLER_HPP_
39#include "AbstractCellKiller.hpp"
42#include <boost/serialization/base_object.hpp>
72 template<
class Archive>
73 void serialize(Archive & archive,
const unsigned int version)
75 archive & boost::serialization::base_object<AbstractCellKiller<DIM> >(*this);
120namespace serialization
125template<
class Archive,
unsigned DIM>
126inline void save_construct_data(
131 ar << p_cell_population;
132 unsigned targeted_index = t->GetTargetIndex();
133 ar << targeted_index;
134 bool blood_lust = t->GetBloodLust();
141template<
class Archive,
unsigned DIM>
142inline void load_construct_data(
147 ar >> p_cell_population;
148 unsigned targeted_index;
149 ar >> targeted_index;
gcov doesn't like this file...
#define EXPORT_TEMPLATE_CLASS_SAME_DIMS(CLASS)
unsigned GetBloodLust() const
unsigned GetTargetIndex() const
void serialize(Archive &archive, const unsigned int version)
void CheckAndLabelCellsForApoptosisOrDeath()
friend class boost::serialization::access
void OutputCellKillerParameters(out_stream &rParamsFile)