https://github.com/ksalekk/cpp-oop
https://github.com/ksalekk/cpp-oop
cmake cpp data-structures oop
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ksalekk/cpp-oop
- Owner: ksalekk
- Created: 2024-05-22T13:01:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-30T21:31:34.000Z (almost 2 years ago)
- Last Synced: 2025-01-21T09:09:26.092Z (about 1 year ago)
- Topics: cmake, cpp, data-structures, oop
- Language: C++
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Object-Oriented Programming in C++
The repository contains my mini project that I created as part of learning the C++ object-oriented programming paradigm at the university at the beginning of my adventure with programming. The project uses the standard C++ library and the included .cpp and .h files.
The project includes an implementation of the inheritance scheme given below.

Moreover, it has been prepared a generic Container class for storing objects of any type, implemented as the doubly linked list.
For all created classes a few operators have been overloaded. Each class has also implemented persistance methods for storing and reconstructing the state of the entire object.
The app contains console interfaces for testing functionalities of each class.
