3
votes
8answers
336 views
Trouble with Factory and dynamic allocation in C++
I have a factory that builds the objects with longest lifetime in my application. These have types, lets say, ClientA and ClientB, which depend on Provider (a …
5
votes
Are there any viable alternatives to the GOF Singleton Pattern?
The finest solution I have came across is using the factory pattern to construct instances of your classes. Using the pattern, you can assure that there is only one instance of a class tha …
