mirror of https://github.com/Icinga/icinga2.git
Merge pull request #10176 from Icinga/ICINGA2_UNITY_BUILD=OFF-ICINGA2_WITH_LIVESTATUS=ON
Fix build on Mac with -DICINGA2_UNITY_BUILD=OFF -DICINGA2_WITH_LIVESTATUS=ON
This commit is contained in:
commit
7df6baf146
|
@ -55,6 +55,7 @@ class ApplyRule;
|
|||
struct ScriptFrame;
|
||||
class Host;
|
||||
class Service;
|
||||
class UserGroup;
|
||||
|
||||
/**
|
||||
* An Icinga notification specification.
|
||||
|
@ -73,7 +74,7 @@ public:
|
|||
intrusive_ptr<NotificationCommand> GetCommand() const;
|
||||
TimePeriod::Ptr GetPeriod() const;
|
||||
std::set<User::Ptr> GetUsers() const;
|
||||
std::set<UserGroup::Ptr> GetUserGroups() const;
|
||||
std::set<intrusive_ptr<UserGroup>> GetUserGroups() const;
|
||||
|
||||
void UpdateNotificationNumber();
|
||||
void ResetNotificationNumber();
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#define USERGROUP_H
|
||||
|
||||
#include "icinga/i2-icinga.hpp"
|
||||
#include "icinga/notification.hpp"
|
||||
#include "icinga/usergroup-ti.hpp"
|
||||
#include "icinga/user.hpp"
|
||||
|
||||
|
|
Loading…
Reference in New Issue