diff options
Diffstat (limited to 'kopete/protocols/testbed/testbedincomingmessage.cpp')
-rw-r--r-- | kopete/protocols/testbed/testbedincomingmessage.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/kopete/protocols/testbed/testbedincomingmessage.cpp b/kopete/protocols/testbed/testbedincomingmessage.cpp new file mode 100644 index 00000000..fbbd4c83 --- /dev/null +++ b/kopete/protocols/testbed/testbedincomingmessage.cpp @@ -0,0 +1,36 @@ +/* + testbedincomingmessage.cpp - Kopete Testbed Protocol + + Copyright (c) 2003 by Will Stephenson <[email protected]> + Kopete (c) 2002-2003 by the Kopete developers <[email protected]> + + ************************************************************************* + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + ************************************************************************* +*/ + +#include "testbedincomingmessage.h" + +TestbedIncomingMessage::TestbedIncomingMessage( TestbedFakeServer* const server , QString message ) +{ + m_server = server; + m_message = message; + m_delivered = false; +} + +TestbedIncomingMessage::~TestbedIncomingMessage() +{ +} + +void TestbedIncomingMessage::deliver() +{ + m_server->incomingMessage( m_message ); + m_delivered = true; +} + +#include "testbedincomingmessage.moc" |