|
FBX C++ API Reference
|
#include <fbxmap.h>
A simple map class representing a dictionary-like data structure.
Public Types | |
| typedef FbxMap< Key, Type, Compare >::RecordType * | Iterator |
Public Member Functions | |
| void | Add (const Key &pKey, const Type &pValue) |
| Add a key-value pair as an element. More... | |
| Iterator | Find (const Key &pKey) const |
| Find an element with a given key. More... | |
| Iterator | Find (const Type &pValue) const |
| Find an element with a given value. More... | |
| void | Remove (Iterator pIterator) |
| Remove an element from the map. More... | |
| Iterator | GetFirst () const |
| Get the first element. More... | |
| Iterator | GetNext (Iterator pIterator) const |
| Get the next element of a given element. More... | |
| void | Clear () |
| Remove all of the elements. More... | |
| void | Reserve (int pSize) |
| Reserve the space for given number elements. More... | |
| int | GetCount () const |
| Query the count of elements in the map. More... | |
|
inline |
|
inline |
|
inline |
Find an element with a given value.
| pValue | The given value. |
Definition at line 279 of file fbxmap.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |