Merge branch 'master' of github.com:gunnarbeutner/strawberry

Conflicts:
	base/dictionary.cpp
This commit is contained in:
Gunnar Beutner 2012-07-01 13:07:32 +02:00
commit e2c04f604f
4 changed files with 12 additions and 3 deletions

View File

@ -22,6 +22,11 @@
namespace icinga { namespace icinga {
/**
* Log severity.
*
* @ingroup base
*/
enum LogSeverity enum LogSeverity
{ {
LogDebug, LogDebug,

View File

@ -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);

View File

@ -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:

View File

@ -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();
} }