#ifndef _CLASS_H #define _CLASS_H using namespace std; class dot { public: dot(); void setSize(int); int getSize(); private: int size; }; class dash { public: dash(); void setLength(int); int getLength(); private: int length; }; #endif