Tagged Questions
3
votes
3answers
2k views
Multiple Singleton Instances
I am writing a library of utility classes, many of which are singletons. I have implemented them as such using inheritance:
template <class T>
class Singleton {
public:
T& ...