CSCI 3081 - Drone Delivery System
|
Represents a node in a graph object. More...
#include <graph.h>
Public Member Functions | |
virtual | ~IGraphNode () |
Destructor. | |
virtual const std::string & | GetName () const =0 |
Gets the node name. | |
virtual const std::vector< IGraphNode * > & | GetNeighbors () const =0 |
Gets the node's neighbors. | |
virtual const std::vector< float > | GetPosition () const =0 |
Gets the node's position. | |
Represents a node in a graph object.