#include "graph.h" #include "node.h" #include "types.h" Graph::Graph( size_t size ) : node_container( size ) { }