#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