diff --git a/base/application.h b/base/application.h index 520cd3573..4371542da 100644 --- a/base/application.h +++ b/base/application.h @@ -22,6 +22,11 @@ namespace icinga { +/** + * Log severity. + * + * @ingroup base + */ enum LogSeverity { LogDebug, diff --git a/base/configobject.cpp b/base/configobject.cpp index 793882019..d4dcfe79c 100644 --- a/base/configobject.cpp +++ b/base/configobject.cpp @@ -75,7 +75,6 @@ bool ConfigObject::IsLocal(void) const return value; } - void ConfigObject::SetTemporary(bool value) { GetProperties()->SetProperty("__temporary", value ? 1 : 0); diff --git a/base/configobject.h b/base/configobject.h index cbd2fc4cd..d11e6e4e8 100644 --- a/base/configobject.h +++ b/base/configobject.h @@ -23,6 +23,11 @@ namespace icinga { +/** + * A configuration object. + * + * @ingroup base + */ class I2_BASE_API ConfigObject : public Object { public: diff --git a/base/dictionary.cpp b/base/dictionary.cpp index 7cbd59e32..e7a6b25fe 100644 --- a/base/dictionary.cpp +++ b/base/dictionary.cpp @@ -26,7 +26,7 @@ using namespace icinga; * * @returns An iterator. */ -Iterator Dictionary::Begin(void) +Dictionary::Iterator Dictionary::Begin(void) { return m_Data.begin(); } @@ -36,7 +36,7 @@ Iterator Dictionary::Begin(void) * * @returns An iterator. */ -Iterator Dictionary::End(void) +Dictionary::Iterator Dictionary::End(void) { return m_Data.end(); }