blacklib folder reorganisation

This commit is contained in:
Roland Winklmeier
2013-03-11 20:41:29 +01:00
parent a0a7049785
commit 4e219f14a8
118 changed files with 8297 additions and 5 deletions

15
src/blackmisc/message.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "blackmisc/message.h"
namespace BlackMisc
{
IMessage::IMessage(QString& id)
{
m_message_id = id;
}
QString IMessage::getID() const
{
return m_message_id;
}
} // namespace BlackMisc