Home
last modified time | relevance | path

Searched defs:C4RefCntPointer (Results 1 – 1 of 1) sorted by relevance

/dports/games/openclonk/openclonk-release-8.1-src/src/script/
H A DC4StringTable.h58 C4RefCntPointer(T* p): p(p) { IncRef(); } in C4RefCntPointer() function
59 C4RefCntPointer(): p(nullptr) { } in C4RefCntPointer() function
60 C4RefCntPointer(const C4RefCntPointer<T> & r) : p(r.p) { IncRef(); } in C4RefCntPointer() function
61 template <class U> C4RefCntPointer(const C4RefCntPointer<U> & r): p(r.p) { IncRef(); } in C4RefCntPointer() function
63 C4RefCntPointer(C4RefCntPointer<T> &&r) : p(r.p) { r.p = nullptr; } in C4RefCntPointer() function
64 template <class U> C4RefCntPointer(C4RefCntPointer<U> &&r): p(r.p) { r.p = 0; } in C4RefCntPointer() function