2022-10-24 19:21:40 -05:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
|
|
// for Raspberry Pi
|
|
|
|
//
|
2022-11-09 08:40:26 +01:00
|
|
|
// Copyright (C) 2022 akuker
|
2022-10-24 19:21:40 -05:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-11-09 08:40:26 +01:00
|
|
|
#include "bus.h"
|
2022-10-24 19:21:40 -05:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class GPIOBUS_Factory
|
|
|
|
{
|
|
|
|
public:
|
2022-11-09 08:40:26 +01:00
|
|
|
|
|
|
|
static unique_ptr<BUS> Create(BUS::mode_e);
|
2022-10-24 19:21:40 -05:00
|
|
|
};
|