├── .gitignore ├── Readme.md ├── example ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── example.sln ├── example.vcxproj ├── example.vcxproj.filters ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── icon.rc ├── openFrameworks-Info.plist └── src │ ├── Image.cpp │ ├── Image.h │ ├── MyRectangle.cpp │ ├── MyRectangle.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxSingletonLib ├── ofxSingleton.props ├── ofxSingleton.vcxproj └── ofxSingleton.vcxproj.filters └── src ├── ofxSingleton.h └── ofxSingleton ├── BaseStore.cpp ├── BaseStore.h ├── Register.cpp ├── Register.h ├── Singleton.h └── UnmanagedSingleton.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/Readme.md -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxSingleton -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.sln -------------------------------------------------------------------------------- /example/example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.vcxproj -------------------------------------------------------------------------------- /example/example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.vcxproj.filters -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /example/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/icon.rc -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/Image.cpp -------------------------------------------------------------------------------- /example/src/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/Image.h -------------------------------------------------------------------------------- /example/src/MyRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/MyRectangle.cpp -------------------------------------------------------------------------------- /example/src/MyRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/MyRectangle.h -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /ofxSingletonLib/ofxSingleton.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/ofxSingletonLib/ofxSingleton.props -------------------------------------------------------------------------------- /ofxSingletonLib/ofxSingleton.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/ofxSingletonLib/ofxSingleton.vcxproj -------------------------------------------------------------------------------- /ofxSingletonLib/ofxSingleton.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/ofxSingletonLib/ofxSingleton.vcxproj.filters -------------------------------------------------------------------------------- /src/ofxSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton.h -------------------------------------------------------------------------------- /src/ofxSingleton/BaseStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton/BaseStore.cpp -------------------------------------------------------------------------------- /src/ofxSingleton/BaseStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton/BaseStore.h -------------------------------------------------------------------------------- /src/ofxSingleton/Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton/Register.cpp -------------------------------------------------------------------------------- /src/ofxSingleton/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton/Register.h -------------------------------------------------------------------------------- /src/ofxSingleton/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton/Singleton.h -------------------------------------------------------------------------------- /src/ofxSingleton/UnmanagedSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSingleton/HEAD/src/ofxSingleton/UnmanagedSingleton.h --------------------------------------------------------------------------------