Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moshegroot/design-patterns-practice
Practice of design patterns in modern C++
https://github.com/moshegroot/design-patterns-practice
cpp cpp20 learning learning-by-doing
Last synced: about 2 months ago
JSON representation
Practice of design patterns in modern C++
- Host: GitHub
- URL: https://github.com/moshegroot/design-patterns-practice
- Owner: MosheGroot
- License: mit
- Created: 2022-03-10T19:19:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-23T17:11:06.000Z (almost 3 years ago)
- Last Synced: 2023-10-03T09:30:38.855Z (over 1 year ago)
- Topics: cpp, cpp20, learning, learning-by-doing
- Language: C++
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Design patterns practice
Practice of design patterns in modern C++.
Each of the pattern examples has the own `README` and runtime `.GIF` with the result of the program. Be free in checking each directory.
## List of patterns
#### Creational patterns:
+ [Factory method](/Creational-patters/1_Factory)
+ [Abstract factory](/Creational-patters/2_Abstract-Factory)
+ [Builder](/Creational-patters/3_Builder)
+ [Prototype](/Creational-patters/4_Prototype)
+ [Singleton](/Creational-patters/5_Singleton)#### Structural patterns
+ [Adapter](/Structural-patterns/1_Adapter)
+ [Bridge](/Structural-patterns/2_Bridge)
+ [Composite](/Structural-patterns/3_Composite)
+ [Decorator](/Structural-patterns/4_Decorator)
+ [Facade](/Structural-patterns/5_Facade)
+ [Flyweight](/Structural-patterns/6_Flyweight)
+ [Proxy](/Structural-patterns/7_Proxy)#### Behavioural patterns
*[in progress]*