factory pattern in C++
- Factory Pattern in C++
- Never Call Virtual Functions during Construction or Destruction An Excerpt from Effective C++, Third Edition
- Scott Meyers Articles and Interviews
- Generic Class Factory
- Simple Splitter with CWnd-derived Panes
- Abstract Factory Step-by-Step Implementation in C++
- The Dynamic Registry Factory
- Understanding and Implementing Abstract Factory Pattern in C++
Using the Factory pattern in C++ to expose only an object's abstract type--hiding the implementation class detail..
This article is an excerpt from Scott Meyers's new book, Effective C++, Third Edition: 55 Specific Ways to Improve Your Programs and Designs. Reprinted with permission..
his page summarizes Scott's non-book technical publications and interviews. It includes his doctoral dissertation, but does not include information on books or book-like publications (those are described on his Books & CDs page), nor does it list his many technical blog entries.
Template-based class factory, which can cooperate with almost all object models.
A splitter window class, which combines the basic CSplitterWnd functionality and professional look with the ability to use CWnd-derived panes.
Step by Step Implementation of Abstract Factory Design Pattern in C++
The idea was to write the system in such a way that every format will have a common interface, and adding (or removing) a new format will not a affect the existing code at all..
This article aims at understanding and implementing Abstract Factory Pattern in C++..
No comments:
Post a Comment