mirror of
https://github.com/akuker/RASCSI.git
synced 2025-03-11 03:30:32 +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);
|
|
}; |