summaryrefslogtreecommitdiff
path: root/src/mbgl/style/group_by_layout.hpp
blob: 3a89ac95f3c7e9bfd97f8e8c53ca36ef60693184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <vector>
#include <memory>

namespace mbgl {
namespace style {

class Layer;

std::vector<std::vector<const Layer*>> groupByLayout(const std::vector<std::unique_ptr<Layer>>&);

} // namespace style
} // namespace mbgl