diff options
| author | Fuwn <[email protected]> | 2023-09-26 22:14:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-26 22:14:57 -0700 |
| commit | 199ec09e5b1ab397acf36c192d1e381a89083be8 (patch) | |
| tree | 29d9f70ca0a963df7f49bb387b290b5675a7d7b7 /week_1/review_program/review_program.h | |
| parent | style(review_program): move main function order (diff) | |
| download | cs260-199ec09e5b1ab397acf36c192d1e381a89083be8.tar.xz cs260-199ec09e5b1ab397acf36c192d1e381a89083be8.zip | |
style(review_program): rename symbols
Diffstat (limited to 'week_1/review_program/review_program.h')
| -rw-r--r-- | week_1/review_program/review_program.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/week_1/review_program/review_program.h b/week_1/review_program/review_program.h index 45fe940..1537a8a 100644 --- a/week_1/review_program/review_program.h +++ b/week_1/review_program/review_program.h @@ -4,10 +4,12 @@ #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 +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 |