Moved the MyApplication class into the icinga namespace

This commit is contained in:
Gunnar Beutner 2012-03-30 07:39:43 +02:00
parent ba262f0143
commit 4a636d92fe

View File

@ -8,6 +8,9 @@ using namespace icinga;
using std::cout;
using std::endl;
namespace icinga
{
class MyApplication : public Application
{
public:
@ -46,4 +49,6 @@ public:
}
};
SET_START_CLASS(MyApplication);
}
SET_START_CLASS(icinga::MyApplication);