summaryrefslogtreecommitdiff
path: root/include/book_store/library.hh
blob: 9044bb987d998727280283a22ee9ef2eeace7b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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