#ifndef B_H #define B_H class CB { friend class CA; public: //public data private: int x; float y; char c; }; #endif