11 : name(), comment(), cost(0), payDay(0)
13 SERVICE_CONF(const std::string & n)
14 : name(n), comment(), cost(0), payDay(0)
16 SERVICE_CONF(const std::string & n, double c)
17 : name(n), comment(), cost(c), payDay(0)
19 SERVICE_CONF(const std::string & n, double c, unsigned p)
20 : name(n), comment(), cost(c), payDay(static_cast<uint8_t>(p))
22 SERVICE_CONF(const std::string & n, double c,
23 unsigned p, const std::string & com)
24 : name(n), comment(com), cost(c), payDay(static_cast<uint8_t>(p))
34 bool operator==(const SERVICE_CONF & a, const SERVICE_CONF & b)
36 return a.name == b.name;
39 #endif //SERVICE_CONF_H