new files

This commit is contained in:
Max-Wilhelm Bruker 2010-08-04 13:57:13 +02:00
parent 7921b5f82d
commit 58e803c3e7
10 changed files with 452 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#include "localserverinterface.h"
#include "localserver.h"
LocalServerInterface::LocalServerInterface(LocalServer *_server)
: Server_ProtocolHandler(_server, _server)
{
}
LocalServerInterface::~LocalServerInterface()
{
}
bool LocalServerInterface::sendProtocolItem(ProtocolItem *item, bool deleteItem)
{
emit itemToClient(item);
return false;
}
void LocalServerInterface::itemFromClient(ProtocolItem *item)
{
processCommandContainer(static_cast<CommandContainer *>(item));
}