00001 #ifndef ATTRIBUTEADDER_H 00002 #define ATTRIBUTEADDER_H 00003 namespace CompuCell3D{ 00004 00005 class CellG; 00006 00007 class AttributeAdder{ 00008 public: 00009 AttributeAdder(){} 00010 virtual ~AttributeAdder(){} 00011 virtual void addAttribute(CellG *){}; 00012 virtual void destroyAttribute(CellG *){}; 00013 00014 }; 00015 00016 }; 00017 00018 #endif
1.5.6