diff options
author | tomaszduda23 <[email protected]> | 2023-03-04 18:25:16 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-03-04 20:25:16 +0300 |
commit | 52ac8d93a18521f19dc45e9b4283417ed06f63d8 (patch) | |
tree | caf95bfe17db38067891d4ed958cdffe50ef4459 /hid/lib/drivers/factory.h | |
parent | 1f9e826f2fa9e27c705146254cf3597f531f0599 (diff) |
adds abstraction for connection (#111)
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 b82c4e14..8dcfd571 100644 --- a/hid/lib/drivers/factory.h +++ b/hid/lib/drivers/factory.h @@ -25,6 +25,7 @@ #include "mouse.h" #include "storage.h" #include "board.h" +#include "connection.h" namespace DRIVERS { @@ -33,5 +34,6 @@ namespace DRIVERS { static Mouse *makeMouse(type _type); static Storage* makeStorage(type _type); static Board* makeBoard(type _type); + static Connection* makeConnection(type _type); }; } |