Horizon
Loading...
Searching...
No Matches
layer_provider.hpp
1#pragma once
2#include "layer.hpp"
3#include <vector>
4#include <map>
5#include <set>
6
7namespace horizon {
9public:
10 virtual const std::map<int, Layer> &get_layers() const;
11 std::string get_layer_name(const class LayerRange &layer) const;
12 std::set<int> get_layers_for_range(const class LayerRange &layer) const;
13};
14} // namespace horizon
Definition layer_provider.hpp:8
Definition layer_range.hpp:11