/************************************************************************* * * Homework 4: Exploring continuous deployment. * * File Name: quote.h * Course: CPTR 245 * */ #include <string> #include <vector> struct Quote { std::string student; std::string quote; std::string author; }; class Quotes { private: std::vector<Quote> quotes; unsigned int seed; public: explicit Quotes(unsigned int); Quote getRandomQuote(); Quote getQuote(int); };