TestDesk/inc/tester/question.h
2024-05-08 13:59:08 -04:00

21 lines
No EOL
320 B
C++

#ifndef H_QUESTION
#define H_QUESTION
// Includes
#include "base.h"
// Classes
class Question{
public:
// Variables
std::string prompt;
std::vector<std::string> responses;
int correct;
// Constructor
Question(std::string prompt, std::vector<std::string> responses, int correct);
// Functions
};
#endif