#ifndef __body
#define __body
class body : public ooObj {
public:
inline virtual char* identify() =0;
int IsAShape() { return 0; }
int IsABody() { return 1; }
inline virtual float GetVolume() =0;
inline virtual float GetSurface() =0;
};
#endif