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/tester/question.h

21 lines
320 B
C
Raw Normal View History

2024-05-08 12:59:08 -05:00
#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