├── .gitignore ├── Example.as ├── Example.cpp ├── LICENSE.txt ├── README.md ├── RefCountingObject.h ├── RefCountingObjectPtr.h └── Testbed ├── Testbed.sln ├── Testbed.vcxproj ├── Testbed.vcxproj.filters ├── Testbed.vcxproj.user ├── debug_log.h ├── main.cpp ├── scriptstdstring.cpp └── scriptstdstring.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Example.as -------------------------------------------------------------------------------- /Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Example.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/README.md -------------------------------------------------------------------------------- /RefCountingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/RefCountingObject.h -------------------------------------------------------------------------------- /RefCountingObjectPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/RefCountingObjectPtr.h -------------------------------------------------------------------------------- /Testbed/Testbed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/Testbed.sln -------------------------------------------------------------------------------- /Testbed/Testbed.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/Testbed.vcxproj -------------------------------------------------------------------------------- /Testbed/Testbed.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/Testbed.vcxproj.filters -------------------------------------------------------------------------------- /Testbed/Testbed.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/Testbed.vcxproj.user -------------------------------------------------------------------------------- /Testbed/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/debug_log.h -------------------------------------------------------------------------------- /Testbed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/main.cpp -------------------------------------------------------------------------------- /Testbed/scriptstdstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/scriptstdstring.cpp -------------------------------------------------------------------------------- /Testbed/scriptstdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohlidalp/RefCountingObject-AngelScript/HEAD/Testbed/scriptstdstring.h --------------------------------------------------------------------------------