#ifndef REVIEW_PROGRAM_HH #define REVIEW_PROGRAM_HH #include "textbook.hh" #include #include namespace review_program { auto textbook_input(textbook::Textbook &) -> void; template auto input_textbook_value(const std::string &) -> T; auto textbook_input_loop_handler(std::vector &) -> void; auto full_purchase_summary(const std::vector &) -> void; } // namespace review_program #endif