diff options
author | tomaszduda23 <[email protected]> | 2022-07-11 11:59:56 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-11 05:59:56 +0300 |
commit | dc1bc121c89600e2d5a18458283aa5960aa39e24 (patch) | |
tree | 9c212046147cdea8a65973b3b0fd1405cbdeb5c4 /hid/lib/drivers/factory.h | |
parent | 89aff795fd7905aaf192428bb99814c13b98d5c2 (diff) |
add interface for storage (#99)
Diffstat (limited to 'hid/lib/drivers/factory.h')
-rw-r--r-- | hid/lib/drivers/factory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hid/lib/drivers/factory.h b/hid/lib/drivers/factory.h index 0fb8e173..7dbafdd9 100644 --- a/hid/lib/drivers/factory.h +++ b/hid/lib/drivers/factory.h @@ -23,11 +23,13 @@ #include "keyboard.h" #include "mouse.h" +#include "storage.h" namespace DRIVERS { struct Factory { static Keyboard *makeKeyboard(type _type); static Mouse *makeMouse(type _type); + static Storage* makeStorage(type _type); }; } |