forked from Sepanta/console-emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
296 B
17 lines
296 B
#ifndef TESTDATASENDER_H
|
|
#define TESTDATASENDER_H
|
|
|
|
#include "model/DataSender.h"
|
|
|
|
class TestDataSender : public DataSender
|
|
{
|
|
public:
|
|
QByteArray consoleData;
|
|
|
|
void send(const QByteArray& data) override
|
|
{
|
|
consoleData = data;
|
|
}
|
|
};
|
|
|
|
#endif //TESTDATASENDER_H
|
|
|