#ifndef METAL_H #define METAL_H class CMetal { public: CMetal( const double NewMass ); const char* Name(); void SetName(const char* NewName); void Show() const; // this const must be initialized in member //initilization list of all constructors const double m_Mass; private: char m_Name[30]; }; #endif