HDK
|
#include <pathTable.h>
Public Member Functions | |
key_type const & | GetKey () const |
key_type & | GetMutableKey () |
mapped_type const & | GetMapped () const |
mapped_type & | GetMutableMapped () |
bool | IsValid () const |
operator bool () const | |
void | reset () |
Static Public Member Functions | |
static NodeHandle | New (value_type const &value) |
static NodeHandle | New (value_type &&value) |
static NodeHandle | New (key_type const &key, mapped_type const &mapped) |
Friends | |
class | SdfPathTable |
A handle owning a path table node that may be used to "reserve" a stable memory location for key & mapped object. A node handle may be inserted into a table later, and if that insertion is successful, the underlying key & mapped object remain at the same memory location.
Definition at line 318 of file pathTable.h.
|
inline |
Return a const reference to this NodeHandle's key. This NodeHandle must be valid to call this member function (see NodeHandle::IsValid).
Definition at line 350 of file pathTable.h.
|
inline |
Return a const reference to this NodeHandle's mapped object. This NodeHandle must be valid to call this member function (see NodeHandle::IsValid).
Definition at line 364 of file pathTable.h.
|
inline |
Return a mutable reference to this NodeHandle's key. This NodeHandle must be valid to call this member function (see NodeHandle::IsValid).
Definition at line 357 of file pathTable.h.
|
inline |
Return a mutable reference to this NodeHandle's mapped object. This NodeHandle must be valid to call this member function (see NodeHandle::IsValid).
Definition at line 371 of file pathTable.h.
|
inline |
Return true if this NodeHandle owns a path table entry, false otherwise.
Definition at line 377 of file pathTable.h.
|
inlinestatic |
Create a new NodeHandle for a table entry. This NodeHandle can later be inserted into an SdfPathTable. If inserted successfully, the key and value addresses remain valid. NodeHandles may be created concurrently without additional synchronization.
Definition at line 327 of file pathTable.h.
|
inlinestatic |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 335 of file pathTable.h.
|
inlinestatic |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 343 of file pathTable.h.
|
inlineexplicit |
Return true if this NodeHandle owns a path table entry, false otherwise.
Definition at line 383 of file pathTable.h.
|
inline |
Delete any owned path table entry. After calling this function, IsValid() returns false.
Definition at line 389 of file pathTable.h.
|
friend |
Definition at line 320 of file pathTable.h.