summaryrefslogtreecommitdiff
path: root/source/member.cc
diff options
context:
space:
mode:
Diffstat (limited to 'source/member.cc')
-rw-r--r--source/member.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/source/member.cc b/source/member.cc
deleted file mode 100644
index 0e8a41c..0000000
--- a/source/member.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <book_store/book.hh>
-#include <book_store/member.hh>
-#include <book_store/price.hh>
-
-namespace book_store::consumer {
-using namespace product;
-
-auto member::books_bought() const noexcept -> book::size_type {
- return this->_books_bought;
-}
-
-auto member::amount_spent() const noexcept -> price::usd {
- return this->_amount_spent;
-}
-
-auto member::books_bought(book::size_type books_bought) noexcept -> void {
- this->_books_bought = books_bought;
-}
-
-auto member::amount_spent(price::usd amount_spent) noexcept -> void {
- this->_amount_spent = amount_spent;
-}
-} // namespace book_store::consumer