mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-26 07:04:37 +02:00
Fixed incorrect type name.
This commit is contained in:
parent
686191103f
commit
23e7b7aefc
@ -425,7 +425,7 @@ set<Service::Ptr> Host::GetParentServices(void) const
|
|||||||
return parents;
|
return parents;
|
||||||
}
|
}
|
||||||
|
|
||||||
Dynamic::Ptr Host::CalculateDynamicMacros(void) const
|
Dictionary::Ptr Host::CalculateDynamicMacros(void) const
|
||||||
{
|
{
|
||||||
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ public:
|
|||||||
Dictionary::Ptr GetServiceDependencies(void) const;
|
Dictionary::Ptr GetServiceDependencies(void) const;
|
||||||
String GetHostCheck(void) const;
|
String GetHostCheck(void) const;
|
||||||
|
|
||||||
Dynamic::Ptr CalculateDynamicMacros(void) const;
|
Dictionary::Ptr CalculateDynamicMacros(void) const;
|
||||||
|
|
||||||
shared_ptr<Service> GetHostCheckService(void) const;
|
shared_ptr<Service> GetHostCheckService(void) const;
|
||||||
set<Host::Ptr> GetParentHosts(void) const;
|
set<Host::Ptr> GetParentHosts(void) const;
|
||||||
|
@ -269,7 +269,7 @@ set<Service::Ptr> Service::GetParentServices(void) const
|
|||||||
return parents;
|
return parents;
|
||||||
}
|
}
|
||||||
|
|
||||||
Dynamic::Ptr Service::CalculateDynamicMacros(void) const
|
Dictionary::Ptr Service::CalculateDynamicMacros(void) const
|
||||||
{
|
{
|
||||||
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ public:
|
|||||||
Dictionary::Ptr GetGroups(void) const;
|
Dictionary::Ptr GetGroups(void) const;
|
||||||
String GetShortName(void) const;
|
String GetShortName(void) const;
|
||||||
|
|
||||||
Dynamic::Ptr CalculateDynamicMacros(void) const;
|
Dictionary::Ptr CalculateDynamicMacros(void) const;
|
||||||
|
|
||||||
set<Host::Ptr> GetParentHosts(void) const;
|
set<Host::Ptr> GetParentHosts(void) const;
|
||||||
set<Service::Ptr> GetParentServices(void) const;
|
set<Service::Ptr> GetParentServices(void) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user