mirror of
https://github.com/JakubVojvoda/design-patterns-cpp.git
synced 2025-12-17 21:04:36 +03:00
7 lines
316 B
Markdown
7 lines
316 B
Markdown
## Abstract Factory
|
|
|
|
Abstract factory pattern has creational purpose and provides an interface for creating families of related or dependent objects without specifying their concrete classes.
|
|
Pattern applies to classes where deals with relationships through inheritence ie. they are static-fixed at compile time.
|
|
|
|
|