MCPcopy Create free account
hub / github.com/Vector35/debugger / DbgRefCountObject

Method DbgRefCountObject

core/refcountobject.h:33–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 public:
32 std::atomic<int> m_refs;
33 DbgRefCountObject() : m_refs(0) {}
34 virtual ~DbgRefCountObject() {}
35
36 virtual void AddRef() { m_refs.fetch_add(1); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected