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