00001 #ifndef _UMBRELLA_H_ 00002 #define _UMBRELLA_H_ 00003 00004 #include "Inventory.h" 00005 00006 class Umbrella : public Inventory 00007 { 00008 public: 00009 Umbrella(); 00010 virtual ~Umbrella(); 00011 00012 virtual void calculateValue(); 00013 }; 00014 00015 #endif