#ifndef NON_TEMPLATE_CLASS_2_H #define NON_TEMPLATE_CLASS_2_H #include "StackTemplate.h" template< class T > class CNonTemplateClass2: Stack { public: private: int x; }; #endif