Home
last modified time | relevance | path

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

/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/utils/
H A Dqtquick3dutilsglobal_p.h81 constexpr QSSGRef() : d(nullptr) {} in QSSGRef() function
82 constexpr QSSGRef(std::nullptr_t) : d(nullptr) {} in QSSGRef() function
84 QSSGRef(T *ptr) : d(ptr) in QSSGRef() function
90 QSSGRef(X *ptr) : d(ptr) in QSSGRef() function
95 QSSGRef(const QSSGRef<T> &other) : d(other.d) in QSSGRef() function
101 QSSGRef(const QSSGRef<X> &other) : d(other.get()) in QSSGRef() function
107 QSSGRef(QSSGRef<T> &&other) : d(other.take()) {} in QSSGRef() function
109 QSSGRef(QSSGRef<X> &&other) : d(other.take()) in QSSGRef() function