#ifndef DEEP_H #define DEEP_H #include "Shallow.h" class CDeep { public: CDeep(); ~CDeep(); CShallow* m_Shallow; char* m_String; private: }; #endif