This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
TestDesk/inc/interface/cli.h

30 lines
496 B
C
Raw Normal View History

2024-05-08 12:59:08 -05:00
#ifndef H_TCLI
#define H_TCLI
// Includes
#include <base.h>
#include <tester/question.h>
#include <tester/quiz.h>
// Classes
class Tester_CLI{
private:
// Variables
// Functions
public:
// Variables
// Constructor
Tester_CLI();
// Functions
void AskQuestions(Quiz quiz, int num);
static int Letter2Number(const char* letter);
void DisplayQuestion(int index, int qmax, std::string title, Question* question);
void DisplayScore(Score score, std::string title);
};
#endif