mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
8 lines
192 B
C++
8 lines
192 B
C++
#include "pending_command.h"
|
|
#include "protocol.h"
|
|
|
|
void PendingCommand::processResponse(ProtocolResponse *response)
|
|
{
|
|
emit finished(response);
|
|
emit finished(response->getResponseCode());
|
|
}
|