Horizon
Loading...
Searching...
No Matches
dependency_graph.hpp
1#pragma once
2#include "util/dependency_graph.hpp"
3
4namespace horizon {
6public:
7 using DependencyGraph::DependencyGraph;
8 void add_block(const UUID &uu, const std::set<UUID> &blocks);
9 void dump(const std::string &filename, class BlocksBase &blocks) const;
10};
11} // namespace horizon
Definition blocks.hpp:11
Definition dependency_graph.hpp:5
Definition dependency_graph.hpp:9
This class encapsulates a UUID and allows it to be uses as a value type.
Definition uuid.hpp:16