diff options
author | Maxim Devaev <[email protected]> | 2022-07-09 23:00:13 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-07-09 23:00:13 +0300 |
commit | ad6a387941012e5c54b1f6e977e4bc5425f9be5d (patch) | |
tree | b45b8e95fcac482cf29b85da72eac21f215761e0 /hid/lib/drivers/mouse.h | |
parent | 38fae01cc01a0e984f52c004ade79256d8c90e17 (diff) |
refactoring
Diffstat (limited to 'hid/lib/drivers/mouse.h')
-rw-r--r-- | hid/lib/drivers/mouse.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hid/lib/drivers/mouse.h b/hid/lib/drivers/mouse.h index 3ec29ee9..e9092bc5 100644 --- a/hid/lib/drivers/mouse.h +++ b/hid/lib/drivers/mouse.h @@ -19,13 +19,15 @@ # # *****************************************************************************/ + #pragma once #include <stdint.h> + #include "driver.h" -namespace DRIVERS { +namespace DRIVERS { class Mouse : public Driver { using Driver::Driver; }; |