#ifndef POINTER_CLASS #define POINTER_CLASS #include "base.h" class pointer { public: pointer(); ~pointer(); void set_up(int); void a(); void b(); void c(); private: base * bp; }; #endif