Skip to content

Latest commit

 

History

History
 
 

chapter05_singleton

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Chapter 5: Singleton design pattern

Singleton: ensures a class has only one instance, and provides a global point of access to it.

My implementation is based this stackoverflow post.