1#ifndef GRAPH_VISUALIZER_H
2#define GRAPH_VISUALIZER_H
7#include <SFML/Graphics.hpp>
16 const std::string &title =
"Graph Visualizer");
24 sf::RenderWindow window_;
A generic Graph template parameterized on Node and Edge types.
Declaration of the Intersection class representing a point in 2D space.
Declaration of the Road class representing a connection between two Intersections.
Temporary test-only class to visualize a Graph<Intersection,Road> using SFML.
Definition GraphVisualizer.h:13
A templated graph storing nodes of type T and edges of type U.
Definition Graph.h:58