blob: 41a9deaf1ac3eb38b68129c18648a53a6d8076c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef REVIEW_PROGRAM_HH
#define REVIEW_PROGRAM_HH
#include "textbook.hh"
#include <string>
#include <vector>
namespace review_program {
auto textbook_input(textbook::Textbook &) -> void;
template <typename T> auto input_textbook_value(const std::string &) -> T;
auto textbook_input_loop_handler(std::vector<textbook::Textbook> &) -> void;
auto full_purchase_summary(const std::vector<textbook::Textbook> &) -> void;
} // namespace review_program
#endif
|