mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
Bridge is not yet ready to not subclass Disk (#679)
This commit is contained in:
parent
419dca3c4c
commit
2281a7e53b
@ -24,7 +24,7 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace scsi_defs;
|
using namespace scsi_defs;
|
||||||
|
|
||||||
SCSIBR::SCSIBR() : PrimaryDevice("SCBR")
|
SCSIBR::SCSIBR() : Disk("SCBR")
|
||||||
{
|
{
|
||||||
tap = NULL;
|
tap = NULL;
|
||||||
m_bTapEnable = false;
|
m_bTapEnable = false;
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "os.h"
|
#include "os.h"
|
||||||
#include "primary_device.h"
|
#include "disk.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
@ -29,7 +29,7 @@
|
|||||||
class CTapDriver;
|
class CTapDriver;
|
||||||
class CFileSys;
|
class CFileSys;
|
||||||
|
|
||||||
class SCSIBR : public PrimaryDevice
|
class SCSIBR : public Disk
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -48,7 +48,7 @@ public:
|
|||||||
void SendMessage10(SASIDEV *);
|
void SendMessage10(SASIDEV *);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef PrimaryDevice super;
|
typedef Disk super;
|
||||||
|
|
||||||
Dispatcher<SCSIBR, SASIDEV> dispatcher;
|
Dispatcher<SCSIBR, SASIDEV> dispatcher;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user