diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-04 19:15:54 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-04 19:48:11 +0100 |
commit | b89699c7551f768bf4ff47820543f8c7b8c794af (patch) | |
tree | c3a21ec23a40250ec54b97fe17b9035a932cfaf8 /proto-mouse/ftnoir_protocol_mouse.h | |
parent | 068e0c7d432ede0a388fe1478b5146fcf1809315 (diff) |
modules: make names unique
Diffstat (limited to 'proto-mouse/ftnoir_protocol_mouse.h')
-rw-r--r-- | proto-mouse/ftnoir_protocol_mouse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proto-mouse/ftnoir_protocol_mouse.h b/proto-mouse/ftnoir_protocol_mouse.h index f2880822..39209401 100644 --- a/proto-mouse/ftnoir_protocol_mouse.h +++ b/proto-mouse/ftnoir_protocol_mouse.h @@ -25,10 +25,10 @@ struct settings : opts { {} }; -class FTNoIR_Protocol : public IProtocol +class mouse : public IProtocol { public: - FTNoIR_Protocol() : last_pos_x(0), last_pos_y(0), last_x(0), last_y(0) {} + mouse() : last_pos_x(0), last_pos_y(0), last_x(0), last_y(0) {} bool correct() override; void pose( const double *headpose) override; QString game_name() override; @@ -57,7 +57,7 @@ private slots: void doCancel(); }; -class FTNoIR_ProtocolDll : public Metadata +class mouseDll : public Metadata { public: QString name() { return QString("mouse emulation"); } |