#ifndef DIGRAPH_H_ #define DIGRAPH_H_ #include "graph.h" #include namespace graph { template class Digraph : public Graph { public: Digraph() = default; // Reverse graph directions Digraph reverse(); }; template Digraph Digraph::reverse() { return Digraph(); } } // namespace graph #endif