00001 #ifndef _PLANT_H_ 00002 #define _PLANT_H_ 00003 00004 #include "Object.h" 00005 00006 class Plant : public Object 00007 { 00008 public: 00009 Plant(string filename) : Object(filename) { } 00010 virtual ~Plant() { } 00011 }; 00012 00013 #endif