refactoring

This commit is contained in:
Maxim Devaev
2023-03-04 20:02:28 +02:00
parent 79e1b457b7
commit 50b6237e98
4 changed files with 16 additions and 14 deletions

View File

@@ -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);
};
}