mirror of https://github.com/Icinga/icinga2.git
25 lines
462 B
C
25 lines
462 B
C
|
#ifndef SERVICEGROUP_H
|
||
|
#define SERVICEGROUP_H
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class I2_ICINGA_API ServiceGroup : public ConfigObjectAdapter
|
||
|
{
|
||
|
public:
|
||
|
ServiceGroup(const ConfigObject::Ptr& configObject)
|
||
|
: ConfigObjectAdapter(configObject)
|
||
|
{ }
|
||
|
|
||
|
static bool Exists(const string& name);
|
||
|
static ServiceGroup GetByName(const string& name);
|
||
|
|
||
|
string GetAlias(void) const;
|
||
|
string GetNotesUrl(void) const;
|
||
|
string GetActionUrl(void) const;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* SERVICEGROUP_H */
|