blob: 63591099512179b549d219d00c5b3c8bd1f4b6a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* review_program.h
* Summary: Definition file for program helpers
* Author: Zoltan Szabatin
* Created: April 2nd, 2024
*/
#ifndef REVIEW_PROGRAM_HH
#define REVIEW_PROGRAM_HH
#include "textbook.h"
#include <string>
#include <vector>
namespace wk1_reviewProgram_zSzabatin {
void InputToTextbook(Textbook &);
template <typename T> T InputToTextbookValue(const std::string &);
void TextbookInputHandler(std::vector<Textbook> &);
void FullTextbookPurchaseSummary(const std::vector<Textbook> &);
} // namespace wk1_reviewProgram_zSzabatin
#endif
|