#include"Deep.h" CDeep::CDeep() { m_Shallow = new CShallow; m_String = new char[30]; } CDeep::~CDeep() { delete(m_Shallow); delete(m_String); }