Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 493 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 493 Bytes

Book_Reader Application

In this project, I'm just trying to implement some OOP concepts using c++.


- Take a look at the UML

  • we have three main objects Book, User, and Admin
  • Admins have the ability to add and remove books from the system
  • The user can add books from the system to his own library and he can read them.
  • You can log in and sign up as an admin or user.
  • It's impossible that two users or admins have the same user_name.