DOCUMENTATION - https://doc-cpp-projeto.vercel.app/
This project implements a comprehensive library management system in C++. It facilitates the administration of books, readers, reservations, and loans, with advanced features like exporting and importing data in CSV format. The system uses inheritance and polymorphism to model different types of books and readers.
- Supported book types:
- Scientific Books
- Educational Books
- Fiction Books
- Magazines
- Newspapers
- Available actions:
- Add new books.
- Update book information.
- Register loans and returns.
- Reserve books.
- And more.
- Supported reader types:
- Common Reader
- Student
- Professor
- Senior Reader
- Available actions:
- Register readers.
- Log loans for readers.
- View detailed reader information.
- And more.
- Log loans with loan and return dates.
- Manage book reservations.
- Automatically update book copy availability.
- And more.
- Supported file format: CSV.
- Export detailed information about books, readers, reservations, and loans.
- Import data to restore library state.
- Language: C++.
- Paradigm: Object-Oriented Programming (OOP).
- Classes and objects for data modeling.
- Inheritance to represent specialized types of books and readers.
- Polymorphism for dynamic behaviors.
- Input and Output:
- CSV file manipulation.
- Terminal interaction for data input.
- Compiler: GCC or any C++11 compliant compiler.
- Tools: Doxygen (for documentation generation), Makefile (if configured for automated builds).
-
Clone the Repository
git clone https://github.com/AlexPT2k22/Projecto_POO.git cd Projecto_POO.git
-
Build the Project Compile all .cpp files
g++ -o biblioteca.exe main.cpp src\*.cpp -I include
-
Run the Application
./library_management
-
Generate Documentation (Optional) If Doxygen is installed:
doxygen Doxyfile
This project is licensed under the MIT License - see the LICENSE file for details.