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.
20 lines
289 B
20 lines
289 B
#ifndef CONSOLE_H
|
|
#define CONSOLE_H
|
|
|
|
|
|
class DataSender;
|
|
|
|
class Console
|
|
{
|
|
private:
|
|
DataSender* _dataSender;
|
|
|
|
public:
|
|
Console();
|
|
void injectDataSender(DataSender* sender);
|
|
void test();
|
|
void dualPress();
|
|
void dualRelease();
|
|
};
|
|
|
|
#endif // CONSOLE_H
|
|
|