Implement statusParams instead of msgStatus.

git-svn-id: http://yate.null.ro/svn/yate/trunk@4500 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
andrei 2011-07-13 11:35:33 +00:00
parent 03ebad783e
commit 5841ccec16
1 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ public:
LKModule();
~LKModule();
virtual void initialize();
virtual void msgStatus(Message& msg);
virtual void statusParams(String& str);
private:
bool m_init;
};
@ -403,9 +403,9 @@ void LKModule::initialize()
setup();
}
void LKModule::msgStatus(Message& msg)
void LKModule::statusParams(String& str)
{
msg.retValue() << "count: " << s_count << "\r\n";
str << "count=" << s_count;
}
}; // anonymous namespace