#ifndef B_H #define B_H #include "A.h" class B : public A { public : B(void); ~B(void); int f(void); int g(void); }; #endif // B_H