summaryrefslogtreecommitdiff
path: root/hid/lib/drivers/factory.h
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2023-03-04 20:02:28 +0200
committerMaxim Devaev <[email protected]>2023-03-04 20:02:28 +0200
commit50b6237e983de3ccc364acf76898100effb1ba0c (patch)
tree3b6b2817288c020aa6f7f6475f56462b8017137e /hid/lib/drivers/factory.h
parent79e1b457b7fff18577745cfbb0b96d03c60281eb (diff)
refactoring
Diffstat (limited to 'hid/lib/drivers/factory.h')
-rw-r--r--hid/lib/drivers/factory.h6
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);
};
}