Classes | |
| struct | GetElementType |
| Template Function that is used to get the RefPtr's Element type from the map. More... | |
Functions | |
| template<class mapType> | |
| bool | AddNode (const std::string &nodeName, typename GetElementType< mapType >::value_type *nodeType, mapType &nodeMap) |
| Template function that is used to Add a unique node or object to its respective map. | |
| template<class mapType> | |
| bool | RemoveNode (const std::string &nodeName, mapType &nodeMap) |
| Template function that is used to Remove a unique node or object from its respective map. | |
| template<class mapType> | |
| const GetElementType< mapType > ::value_type * | FindNodePointer (const std::string &nodeName, const mapType &nodeMap) |
| Template function that is used to find a node or object that is inside a map. | |
| template<class mapType> | |
| GetElementType< mapType > ::value_type * | FindNodePointer (const std::string &nodeName, mapType &nodeMap) |
| Template function that is used to find a node or object that is inside a map. | |
| bool dtCore::CollectorUtil::AddNode | ( | const std::string & | nodeName, | |
| typename GetElementType< mapType >::value_type * | nodeType, | |||
| mapType & | nodeMap | |||
| ) | [inline] |
Template function that is used to Add a unique node or object to its respective map.
| nodeName | The name of the Node or Object that is being added to its map | |
| nodeType | The address of the node or object that you wish to add to its map | |
| nodeMap | The map that you want to add the node or object to |
| GetElementType<mapType>::value_type* dtCore::CollectorUtil::FindNodePointer | ( | const std::string & | nodeName, | |
| mapType & | nodeMap | |||
| ) | [inline] |
Template function that is used to find a node or object that is inside a map.
| nodeName | The name of the Node or Object that you wish to find | |
| nodeMap | The map that you wish to search for the Node / Object |
| const GetElementType<mapType>::value_type* dtCore::CollectorUtil::FindNodePointer | ( | const std::string & | nodeName, | |
| const mapType & | nodeMap | |||
| ) | [inline] |
Template function that is used to find a node or object that is inside a map.
| nodeName | The name of the Node or Object that you wish to find | |
| nodeMap | The map that you wish to search for the Node / Object |
| bool dtCore::CollectorUtil::RemoveNode | ( | const std::string & | nodeName, | |
| mapType & | nodeMap | |||
| ) | [inline] |
Template function that is used to Remove a unique node or object from its respective map.
| nodeName | The name of the Node or Object that is being removed from its map | |
| nodeMap | The map that you want to remove the node or object from |