#ifndef TREE_H_ #define TREE_H_ #include "graph/digraph.h" using namespace graph; namespace tree { template class Tree : public Digraph { public: Tree() = default; Tree(std::map> G) : Digraph::Digraph(G) {} }; } // namespace tree #endif