You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
486 B
C++

#ifndef CLASSICINPUTTYPE_H
#define CLASSICINPUTTYPE_H
#include "classicactions.h"
#include "inputtype.h"
class ClassicInputType : public InputType
{
public:
explicit ClassicInputType(const microsec& timestamp, Action action);
virtual ~ClassicInputType() override;
bool operator==(const Action& comparing_action) const;
bool operator==(const ClassicInputType& comparing_action) const;
private:
Action _action;
Button _button;
};
#endif // CLASSICINPUTTYPE_H