SmartPtrMode

SmartPtrMode enum

SmartPtr pointer type: weak or shared. Defines whether pointer is being counted when it is being decided whether to delete object or not.

enum class SmartPtrMode : char

Values

NameValueDescription
Shared0Shared mode: pointer participates in reference counting.
Weak1Weak mode: pointer does not participate in reference counting.

See Also