├── .gitattributes ├── .github └── workflows │ ├── linux.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── Common ├── DllWrapper.hpp ├── GlobalSingleton.hpp ├── GlobalSingletonContext.hpp ├── GlobalSingletonInstance.hpp ├── NonCopyable.hpp └── Singleton.hpp ├── ExeDllSingleton.sln ├── ExeDllSingleton ├── ExeDllSingleton.vcxproj ├── ExeDllSingleton.vcxproj.filters ├── Main.cpp └── TestExe.h ├── LICENSE.txt ├── README.txt ├── SingletonManager ├── SingletonManager.cpp ├── SingletonManager.vcxproj └── SingletonManager.vcxproj.filters ├── TestDll1 ├── TestDll1.cpp ├── TestDll1.h ├── TestDll1.vcxproj └── TestDll1.vcxproj.filters └── TestDll2 ├── TestDll2.cpp ├── TestDll2.h ├── TestDll2.vcxproj └── TestDll2.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Common/DllWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/Common/DllWrapper.hpp -------------------------------------------------------------------------------- /Common/GlobalSingleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/Common/GlobalSingleton.hpp -------------------------------------------------------------------------------- /Common/GlobalSingletonContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/Common/GlobalSingletonContext.hpp -------------------------------------------------------------------------------- /Common/GlobalSingletonInstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/Common/GlobalSingletonInstance.hpp -------------------------------------------------------------------------------- /Common/NonCopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/Common/NonCopyable.hpp -------------------------------------------------------------------------------- /Common/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/Common/Singleton.hpp -------------------------------------------------------------------------------- /ExeDllSingleton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/ExeDllSingleton.sln -------------------------------------------------------------------------------- /ExeDllSingleton/ExeDllSingleton.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/ExeDllSingleton/ExeDllSingleton.vcxproj -------------------------------------------------------------------------------- /ExeDllSingleton/ExeDllSingleton.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/ExeDllSingleton/ExeDllSingleton.vcxproj.filters -------------------------------------------------------------------------------- /ExeDllSingleton/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/ExeDllSingleton/Main.cpp -------------------------------------------------------------------------------- /ExeDllSingleton/TestExe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/ExeDllSingleton/TestExe.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/README.txt -------------------------------------------------------------------------------- /SingletonManager/SingletonManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/SingletonManager/SingletonManager.cpp -------------------------------------------------------------------------------- /SingletonManager/SingletonManager.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/SingletonManager/SingletonManager.vcxproj -------------------------------------------------------------------------------- /SingletonManager/SingletonManager.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/SingletonManager/SingletonManager.vcxproj.filters -------------------------------------------------------------------------------- /TestDll1/TestDll1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll1/TestDll1.cpp -------------------------------------------------------------------------------- /TestDll1/TestDll1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll1/TestDll1.h -------------------------------------------------------------------------------- /TestDll1/TestDll1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll1/TestDll1.vcxproj -------------------------------------------------------------------------------- /TestDll1/TestDll1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll1/TestDll1.vcxproj.filters -------------------------------------------------------------------------------- /TestDll2/TestDll2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll2/TestDll2.cpp -------------------------------------------------------------------------------- /TestDll2/TestDll2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll2/TestDll2.h -------------------------------------------------------------------------------- /TestDll2/TestDll2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll2/TestDll2.vcxproj -------------------------------------------------------------------------------- /TestDll2/TestDll2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KondeU/GlobalSingleton/HEAD/TestDll2/TestDll2.vcxproj.filters --------------------------------------------------------------------------------