#ifndef GRAPH_H #define GRAPH_H #include "node.h" #include "types.h" class Graph : public node_container { public: Graph( size_t size ); }; #endif