20 lines
340 B
C++
20 lines
340 B
C++
#ifndef OUT_TREE_H_
|
|
#define OUT_TREE_H_
|
|
|
|
#include "directed_rooted_tree.h"
|
|
using namespace graph;
|
|
|
|
namespace tree {
|
|
|
|
template<typename T>
|
|
class OutTree : public DirectedRootedTree<T> {
|
|
public:
|
|
OutTree() = default;
|
|
|
|
OutTree(std::map<T, std::set<T>> G)
|
|
: DirectedRootedTree<T>::DirectedRootedTree(G) {}
|
|
};
|
|
|
|
} // namespace tree
|
|
|
|
#endif |