blob: 1537a8ae0b5a547ff4b5d3d9c2abd4082765ba9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef REVIEW_PROGRAM_HH
#define REVIEW_PROGRAM_HH
#include "textbook.h"
#include <string>
#include <vector>
namespace ReviewProgram {
using Textbook::Textbook;
void InputToTextbook(Textbook &);
template <typename T> auto InputToTextbookValue(const std::string &) -> T;
void TextbookInputHandler(std::vector<Textbook> &);
void FullTextbookPurchaseSummary(const std::vector<Textbook> &);
} // namespace ReviewProgram
#endif
|