diff options
| author | Fuwn <[email protected]> | 2024-05-31 00:00:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-31 00:20:41 -0700 |
| commit | 968e1c4af014b7f40bfaa4f57fcc0f38e5e0d847 (patch) | |
| tree | df80525ad0cc9e4b561bfb0772c30ccc5b64b4a2 /include/book_store/library.hh | |
| parent | feat: initial commit (diff) | |
| download | cst_136_assignment_eight-main.tar.xz cst_136_assignment_eight-main.zip | |
Diffstat (limited to 'include/book_store/library.hh')
| -rw-r--r-- | include/book_store/library.hh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/book_store/library.hh b/include/book_store/library.hh new file mode 100644 index 0000000..9044bb9 --- /dev/null +++ b/include/book_store/library.hh @@ -0,0 +1,13 @@ +#ifndef PRIMARY_HH +#define PRIMARY_HH + +#include "book_store/store.hh" + +namespace book_store::library { +auto purchase_handler(book_store::store &store) -> void; +auto populate_books(book_store::store &store, std::size_t library_size) -> void; +auto populate_consumers(book_store::store &store) -> void; +auto manage(book_store::store &store) -> void; +} // namespace book_store::library + +#endif // PRIMARY_HH |