add interface for storage (#99)

This commit is contained in:
tomaszduda23
2022-07-11 11:59:56 +09:00
committed by GitHub
parent 89aff795fd
commit dc1bc121c8
6 changed files with 95 additions and 6 deletions

View File

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