Main Page   Class Hierarchy   Compound List   File List   Compound Members  

colony.h

00001 #ifndef COLONY_H
00002 #define COLONY_H 1
00003 
00004 #include "portion.h"
00005 #include "ant.h"
00006 
00009 class colony : public portion {
00010   double food; 
00012   void freeAntList(antList *freeAnt);
00013 
00014  public:
00021   colony(double *coordinates, int index);
00030   colony(double *coordinates, int index, unsigned int ants); 
00031   ~colony();
00032   double modifyFood(double modifier);
00033   double getFood();
00034   bool isColony();
00035   void update(long int updateStamp);
00036 };
00037 #endif

Generated on Mon Jun 14 09:29:37 2004 by doxygen1.2.15