Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 498 Bytes

Readme.md

File metadata and controls

28 lines (20 loc) · 498 Bytes

cpp singleton that works across dll/exe boundaries.

Features --

  1. Share the same singleton instance in dynamical library and executable.
  2. Multithread safe
  3. Lazy construction
  4. Lock-free with double checked mutex on initialization.

Usage

  1. define a class or struct, for example
class MyObject {
public:
    int a;
    int b;
};
  1. use the singleton instance
#include "singleton-cpp/singleton.h"

MyObject &obj = singleton<MyObject>();