diff options
author | Maxim Devaev <[email protected]> | 2023-03-04 20:02:28 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-03-04 20:02:28 +0200 |
commit | 50b6237e983de3ccc364acf76898100effb1ba0c (patch) | |
tree | 3b6b2817288c020aa6f7f6475f56462b8017137e /hid/lib/drivers/factory.h | |
parent | 79e1b457b7fff18577745cfbb0b96d03c60281eb (diff) |
refactoring
Diffstat (limited to 'hid/lib/drivers/factory.h')
-rw-r--r-- | hid/lib/drivers/factory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hid/lib/drivers/factory.h b/hid/lib/drivers/factory.h index 8dcfd571..e77fee75 100644 --- a/hid/lib/drivers/factory.h +++ b/hid/lib/drivers/factory.h @@ -32,8 +32,8 @@ namespace DRIVERS { struct Factory { static Keyboard *makeKeyboard(type _type); static Mouse *makeMouse(type _type); - static Storage* makeStorage(type _type); - static Board* makeBoard(type _type); - static Connection* makeConnection(type _type); + static Storage *makeStorage(type _type); + static Board *makeBoard(type _type); + static Connection *makeConnection(type _type); }; } |