mirror of https://github.com/Icinga/icinga2.git
Merge branch 'master' of github.com:gunnarbeutner/strawberry
Conflicts: base/dictionary.cpp
This commit is contained in:
commit
e2c04f604f
|
@ -22,6 +22,11 @@
|
||||||
|
|
||||||
namespace icinga {
|
namespace icinga {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log severity.
|
||||||
|
*
|
||||||
|
* @ingroup base
|
||||||
|
*/
|
||||||
enum LogSeverity
|
enum LogSeverity
|
||||||
{
|
{
|
||||||
LogDebug,
|
LogDebug,
|
||||||
|
|
|
@ -75,7 +75,6 @@ bool ConfigObject::IsLocal(void) const
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ConfigObject::SetTemporary(bool value)
|
void ConfigObject::SetTemporary(bool value)
|
||||||
{
|
{
|
||||||
GetProperties()->SetProperty("__temporary", value ? 1 : 0);
|
GetProperties()->SetProperty("__temporary", value ? 1 : 0);
|
||||||
|
|
|
@ -23,6 +23,11 @@
|
||||||
namespace icinga
|
namespace icinga
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A configuration object.
|
||||||
|
*
|
||||||
|
* @ingroup base
|
||||||
|
*/
|
||||||
class I2_BASE_API ConfigObject : public Object
|
class I2_BASE_API ConfigObject : public Object
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -26,7 +26,7 @@ using namespace icinga;
|
||||||
*
|
*
|
||||||
* @returns An iterator.
|
* @returns An iterator.
|
||||||
*/
|
*/
|
||||||
Iterator Dictionary::Begin(void)
|
Dictionary::Iterator Dictionary::Begin(void)
|
||||||
{
|
{
|
||||||
return m_Data.begin();
|
return m_Data.begin();
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ Iterator Dictionary::Begin(void)
|
||||||
*
|
*
|
||||||
* @returns An iterator.
|
* @returns An iterator.
|
||||||
*/
|
*/
|
||||||
Iterator Dictionary::End(void)
|
Dictionary::Iterator Dictionary::End(void)
|
||||||
{
|
{
|
||||||
return m_Data.end();
|
return m_Data.end();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue