template<typename GraphType>
Retrieves all properties for a given node.
- Parameters
-
node | The node from which to get the property map from |
- Returns
- The property map if any properties are set, otherwise NULL.
template<typename GraphType>
Retrieves all properties for a given edge.
- Parameters
-
edge | The edge from which to get the property map from |
- Returns
- The property map if any properties are set, otherwise NULL.
template<typename GraphType>
Retrieves a value for a given property for the given node.
- Parameters
-
node | The node from which to get the property from |
property | The property whose value is returned |
- Returns
- The value string if successful, empty string otherwise
template<typename GraphType>
Retrieves a value for a given property for the given edge.
- Parameters
-
edge | The edge from which to get the property from |
property | The property whose value is returned |
- Returns
- The value string if successful, empty string otherwise
template<typename GraphType>
Sets a property to the given value for the given node. If no such property exists, it will be created. If the node does not exist, nothing is inserted.
- Parameters
-
node | The node to insert a property value for |
property | The property to set |
value | The value to set the property to |
template<typename GraphType>
Sets a property to the given value for the given edge. If no such property exists, it will be created. If the edge does not exist, nothing is inserted.
- Parameters
-
edge | The edge to insert a property value for |
property | The property to set |
value | The value to set the property to |
The documentation for this class was generated from the following file: