You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
436 B

#ifndef CLOCK_SETTINGS_H
#define CLOCK_SETTINGS_H
class ClockSettings
{
public:
ClockSettings();
~ClockSettings();
void add_info(char const* key, char const* val);
inline char const*const server() const {return m_server;}
inline unsigned int cooldown() const {return m_cooldown;}
protected:
char const* m_server;
unsigned int m_cooldown;
};
#endif //CLOCK_SETTINGS_H