blob: aa39db90907c766a2a4542df50b0c2ecb83ac272 (
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: September 26th, 2023
*/
#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
|