1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef PROTOCOL_H #define PROTOCOL_H class protocol { public: protocol(); virtual ~protocol(); protected: private: }; #endif // PROTOCOL_H