#ifndef SERVICE_H #define SERVICE_H class service { public: const char *getName(); const SERVICE getService(); service(const char *name, SERVICE service); ~service(); private: char *szName; SERVICE pService; }; #endif