Skip to content

Instantly share code, notes, and snippets.

@zacharycarter
Last active August 12, 2019 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zacharycarter/db58886ba7cdcdf17937f335ed163242 to your computer and use it in GitHub Desktop.
Save zacharycarter/db58886ba7cdcdf17937f335ed163242 to your computer and use it in GitHub Desktop.
struct SQRefCounted
{
SQUnsignedInteger _uiRef;
struct SQWeakRef *_weakref;
SQRefCounted() { _uiRef = 0; _weakref = NULL; }
virtual ~SQRefCounted();
SQWeakRef *GetWeakRef(SQObjectType type);
virtual void Release()=0;
};
struct SQWeakRef : SQRefCounted
{
void Release();
SQObject _obj;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment