00001 #ifndef __BAR__ 00002 #define __BAR__ 00003 00004 #include "Foo.h" 00005 00006 class Bar : public Foo { 00007 public: 00008 int myInt; 00009 00010 Bar(); 00011 }; 00012 00013 #endif