Move local/remote client and local server files.

Took 32 minutes


Took 8 seconds
This commit is contained in:
Lukas Brübach 2025-10-08 13:15:50 +02:00
parent 484e177589
commit 4e7c98829a
47 changed files with 291 additions and 43 deletions

View file

@ -1,36 +0,0 @@
/**
* @file local_server_interface.h
* @ingroup Server
* @brief TODO: Document this.
*/
#ifndef LOCALSERVERINTERFACE_H
#define LOCALSERVERINTERFACE_H
#include <libcockatrice/server/server_protocolhandler.h>
class LocalServer;
class LocalServerInterface : public Server_ProtocolHandler
{
Q_OBJECT
public:
LocalServerInterface(LocalServer *_server, Server_DatabaseInterface *_databaseInterface);
~LocalServerInterface() override;
QString getAddress() const override
{
return QString();
}
QString getConnectionType() const override
{
return "local";
};
void transmitProtocolItem(const ServerMessage &item) override;
signals:
void itemToClient(const ServerMessage &item);
public slots:
void itemFromClient(const CommandContainer &item);
};
#endif