blob: 7e03acdcd46077091c5c1a84d2b24654ce2ad6b5 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <book_store/book_count.hh>
namespace book_store::product {
[[nodiscard]] auto book_count::value() const noexcept -> book_count_type {
return this->_count;
}
} // namespace book_store::product
|