Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)

Enlighten API 3.10 Documentation
Results will update as you type.
  • class Geo GeoFixedBinarySearchMapCompare
  • class Geo GeoFixedPoolAllocator
  • class Geo GeoFixedString
  • class Geo GeoFlattenAndPackResults
  • class Geo GeoFp16Texture
  • class Geo GeoFpControl
  • class Geo GeoFrameTime
  • class Geo GeoFreeDestructor
  • class Geo GeoGenericTexture
  • class Geo GeoGuid
  • class Geo GeoHalf
  • class Geo GeoHashConstHandle
  • class Geo GeoHashCString
  • class Geo GeoHashDefault
  • class Geo GeoHashHandle
  • class Geo GeoHashMap
  • class Geo GeoHashString
  • class Geo GeoImmutableArray
  • class Geo GeoInputEvent
  • class Geo GeoInstanceCount
  • class Geo GeoIntRange
  • class Geo GeoIntrusivePtr
  • class Geo GeoKeyValueArray
  • class Geo GeoLineSegment
  • class Geo GeoList
  • class Geo GeoMap
  • class Geo GeoMemoryDefault
  • class Geo GeoMemoryPool
  • class Geo GeoMemoryStream
  • class Geo GeoNonAABoundingBox
  • class Geo GeoNoopDestructor
  • class Geo GeoPair
  • class Geo GeoParametrisedPlane3
  • class Geo GeoPriorityQueue
  • class Geo GeoProgress
  • class Geo GeoQueue
  • class Geo GeoQueueEnumInterface
  • class Geo GeoRefArrayPtr
  • class Geo GeoRefCount
  • class Geo GeoRefPtr
  • class Geo GeoRefReleasePtr
  • class Geo GeoReleaseDestructor
  • class Geo GeoRGBXTexture
  • class Geo GeoScopedCSection
  • class Geo GeoSingleton
  • class Geo GeoSpatialHash
  • class Geo GeoString
  • class Geo GeoTimer
  • class Geo GeoTokenList
  • class Geo GeoTokenStream
  • class Geo GeoTriangle
  • class Geo GeoTriple
  • class Geo GeoUniqueDelegatePtr
  • class Geo GeoUniquePtr
  • class Geo GeoUniqueReleasePtr
  • class Geo GeoV128Texture
  • class Geo GeoVariant
  • class Geo GeoVirtualPageAllocator
  • class Geo GeoZLibFileStream
  • class Geo GoodRNG
  • class Geo IdentDataCompare
  • class Geo IdentVertLinkBuilder
  • class Geo IdxLink
  • class Geo IffReader
  • class Geo IffTextWriter
  • class Geo IffWriter
  • class Geo IGeoEvent
  • class Geo IGeoInputStream
  • class Geo IGeoProgressProxy
  • class Geo IGeoRayTracingContext
  • class Geo IGeoReleasable
  • class Geo IGeoSerialisable
  • class Geo IGeoStream
  • class Geo IRtMesh
  • class Geo ITerminalCmdHandler
  • class Geo ITerminalDelegate
  • class Geo ITerminalInputHandler
  • class Geo ITerminalOutputHandler
  • class Geo Matrix
  • class Geo MemoryAllocator
  • class Geo NonCopyable
    Calendars

You‘re viewing this with anonymous access, so some content might be blocked.
/
class Geo GeoRefReleasePtr

    This is the documentation for Enlighten.

    class Geo GeoRefReleasePtr

    Nov 21, 2019

    template<class>
    class Geo::GeoRefReleasePtr

        └>Geo::GeoRefPtr< T, Geo::GeoReleaseDestructor< T > >
            └>Geo::GeoReleaseDestructor< T >

    Given the lack of a template typedef, and how common it is to want a GeoRefPtr with Release dtor, adding a new class to provide this destruction policy by default.

    Functions

    Name Description
    ~GeoRefPtr()

    Destructor - Delete the internal object.

    Count()

    How many pointers share this resource?

    DecrementRef()

    Handle reduction of the reference count.

    GeoRefPtr(const GeoRefPtr< TOther, DOther > &)

    Increase ownership of the payload of other GeoRefPtr, given a different contained type Theoretically could write a destruction policy that accepted matches to other policies, but none implemented to date.

    GeoRefPtr(const GeoRefPtr< T, D > &)

    Increase ownership of the payload of other GeoRefPtr.

    GeoRefPtr(GeoRefPtr &&)

    Move constructor.

    GeoRefPtr(T *)

    Take ownership of the raw ptr. Explicit so that you don't unknowingly change ownership.

    GeoRefReleasePtr(T *)

    Take ownership of the raw-ptr obj. Explicit so that you don't unknowingly change ownership.

    GeoRefReleasePtr(const GeoRefReleasePtr< Other > &)

    Increase ownership of the payload of other GeoRefReleasePtr, but do not add reference count.

    GeoRefReleasePtr(const GeoRefReleasePtr< T > &)

    Increase ownership of the payload of other GeoRefReleasePtr, but do not add reference count.

    GetPtr()

    Explicitely return the contained type.

    IncrementRef()

    Handle increase of the reference count.

    operator bool_type()

    Is the object valid?

    operator GeoRefPtr< TOther, DOther >()

    Convert to GeoRefPtr of compatible type.

    operator!=(const GeoRefPtr &)

    Equivalence/comparison tests.

    operator*()

    Allow dereferencing of the contained type.

    operator[](Geo::s32)

    Allow array referencing of the contained type.

    operator<(const GeoRefPtr &)

    Equivalence/comparison tests.

    operator=(GeoRefPtr &&)

    Move assignment operator.

    operator=(const GeoRefPtr< T, D > &)

    Support assignment (modifying other object)

    operator==(const GeoRefPtr &)

    Equivalence/comparison tests.

    operator>(const GeoRefPtr &)

    Equivalence/comparison tests.

    operator->()

    Access members of the owned object.

    Reset(T *)

    Hold new object, reducing count of current (possibly deleting)

    Unique()

    Is the object unique?


    Geo::GeoRefPtr< T, D >::~GeoRefPtr


    public: ~GeoRefPtr()


    Destructor - Delete the internal object.


    Geo::s32 Geo::GeoRefPtr< T, D >::Count


    public: Geo::s32 Count() const


    How many pointers share this resource?


    void Geo::GeoRefPtr< T, D >::DecrementRef


    public: void DecrementRef()


    Handle reduction of the reference count.


    Geo::GeoRefPtr< T, D >::GeoRefPtr


    public: GeoRefPtr
    (
        const GeoRefPtr< TOther, DOther > & rhs
    )


    Increase ownership of the payload of other GeoRefPtr, given a different contained type Theoretically could write a destruction policy that accepted matches to other policies, but none implemented to date.


    Geo::GeoRefPtr< T, D >::GeoRefPtr


    public: GeoRefPtr
    (
        const GeoRefPtr< T, D > & rhs
    )


    Increase ownership of the payload of other GeoRefPtr.

    Inheritance from the destruction policy ensures that you cannot assign between GeoRefPtr of different policies, whilst allowing assignment to GeoRefPtr to base types.


    Geo::GeoRefPtr< T, D >::GeoRefPtr


    public: GeoRefPtr
    (
        GeoRefPtr && rhs
    )


    Move constructor.


    Geo::GeoRefPtr< T, D >::GeoRefPtr


    public: GeoRefPtr
    (
        T * ptr
    )


    Take ownership of the raw ptr. Explicit so that you don't unknowingly change ownership.


    Geo::GeoRefReleasePtr< T >::GeoRefReleasePtr


    public: GeoRefReleasePtr
    (
        T * obj
    )


    Take ownership of the raw-ptr obj. Explicit so that you don't unknowingly change ownership.


    Geo::GeoRefReleasePtr< T >::GeoRefReleasePtr


    public: GeoRefReleasePtr
    (
        const GeoRefReleasePtr< Other > & rhs
    )


    Increase ownership of the payload of other GeoRefReleasePtr, but do not add reference count.


    Geo::GeoRefReleasePtr< T >::GeoRefReleasePtr


    public: GeoRefReleasePtr
    (
        const GeoRefReleasePtr< T > & rhs
    )


    Increase ownership of the payload of other GeoRefReleasePtr, but do not add reference count.


    T* Geo::GeoRefPtr< T, D >::GetPtr


    public: T * GetPtr() const


    Explicitely return the contained type.


    RefCount* Geo::GeoRefPtr< T, D >::IncrementRef


    public: RefCount * IncrementRef() const


    Handle increase of the reference count.


    Geo::GeoRefPtr< T, D >::operator bool_type


    public: operator bool_type() const


    Is the object valid?


    Geo::GeoRefPtr< T, D >::operator GeoRefPtr< TOther, DOther >


    public: operator GeoRefPtr< TOther, DOther >()


    Convert to GeoRefPtr of compatible type.


    bool Geo::GeoRefPtr< T, D >::operator!=


    public: bool operator!=
    (
        const GeoRefPtr & rhs
    ) const


    Equivalence/comparison tests.


    T& Geo::GeoRefPtr< T, D >::operator*


    public: T & operator*() const


    Allow dereferencing of the contained type.


    T& Geo::GeoRefPtr< T, D >::operator[]


    public: T & operator[]
    (
        Geo::s32 idx
    ) const


    Allow array referencing of the contained type.


    bool Geo::GeoRefPtr< T, D >::operator<


    public: bool operator<
    (
        const GeoRefPtr & rhs
    ) const


    Equivalence/comparison tests.


    GeoRefPtr& Geo::GeoRefPtr< T, D >::operator=


    public: GeoRefPtr & operator=
    (
        GeoRefPtr && obj
    )


    Move assignment operator.


    GeoRefPtr<T,D>& Geo::GeoRefPtr< T, D >::operator=


    public: GeoRefPtr< T, D > & operator=
    (
        const GeoRefPtr< T, D > & rhs
    )


    Support assignment (modifying other object)


    bool Geo::GeoRefPtr< T, D >::operator==


    public: bool operator==
    (
        const GeoRefPtr & rhs
    ) const


    Equivalence/comparison tests.


    bool Geo::GeoRefPtr< T, D >::operator>


    public: bool operator>
    (
        const GeoRefPtr & rhs
    ) const


    Equivalence/comparison tests.


    T* Geo::GeoRefPtr< T, D >::operator->


    public: T * operator->() const


    Access members of the owned object.


    void Geo::GeoRefPtr< T, D >::Reset


    public: void Reset
    (
        T * ptr
    )


    Hold new object, reducing count of current (possibly deleting)


    bool Geo::GeoRefPtr< T, D >::Unique


    public: bool Unique() const


    Is the object unique?

    , multiple selections available,
    {"serverDuration": 8, "requestCorrelationId": "9dfdf6703575447d8b7e125263f75fb5"}