RASCSI/cpp/scsiloop/scsiloop_cout.h
Daniel Markstedt 52c2aa474f
Rebrand project to PiSCSI (#1016)
* Rebrand project to PiSCSI
- rascsi ->piscsi
- rasctl -> scsictl
- rasdump -> scsidump
- ras* -> piscsi* (rasutil -> piscsi_util, etc.)

* Refined the formatting and wording of the app startup banner
* Kept some references to rascsi and rasctl where backwards compatibility is concerned
* Point to the new github repo URL

Co-authored-by: nucleogenic <nr@nucleogenic.com>
Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
2022-12-05 09:58:23 -08:00

33 lines
1.1 KiB
C++

//---------------------------------------------------------------------------
//
// SCSI Target Emulator PiSCSI for Raspberry Pi
// Loopback tester utility
//
// Copyright (C) 2022 akuker
//
//---------------------------------------------------------------------------
#include <string>
#include <vector>
using namespace std;
class ScsiLoop_Cout
{
public:
static void StartTest(const string &test_name);
static void PrintUpdate();
static void FinishTest(const string &test_name, int failures);
static void PrintErrors(vector<string> &test_errors);
private:
const static inline string RESET = "\033[0m";
const static inline string BLACK = "\033[30m"; /* Black */
const static inline string RED = "\033[31m"; /* Red */
const static inline string GREEN = "\033[32m"; /* Green */
const static inline string YELLOW = "\033[33m"; /* Yellow */
const static inline string BLUE = "\033[34m"; /* Blue */
const static inline string MAGENTA = "\033[35m"; /* Magenta */
const static inline string CYAN = "\033[36m"; /* Cyan */
const static inline string WHITE = "\033[37m"; /* White */
};