mirror of
https://github.com/akuker/RASCSI.git
synced 2025-02-16 19:31:09 +00:00
19 lines
431 B
C
19 lines
431 B
C
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
// SCSI Target Emulator RaSCSI Reloaded for Raspberry Pi
|
||
|
// Loopback tester utility
|
||
|
//
|
||
|
// Copyright (C) 2022 akuker
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class ScsiLoop_Timer
|
||
|
{
|
||
|
public:
|
||
|
static int RunTimerTest(vector<string> &error_list);
|
||
|
};
|