//--------------------------------------------------------------------------- // // SCSI Target Emulator RaSCSI Reloaded // for Raspberry Pi // // Copyright (C) 2022 akuker // //--------------------------------------------------------------------------- #pragma once #include "bus.h" #include using namespace std; class GPIOBUS_Factory { public: static unique_ptr Create(BUS::mode_e); };