summaryrefslogtreecommitdiff
path: root/src/mbgl/style/group_by_layout.hpp
blob: dd7b5d118a2bc7d3e372be9c8e9fd40987369b3c (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<std::unique_ptr<Layer>>> groupByLayout(std::vector<std::unique_ptr<Layer>>);

} // namespace style
} // namespace mbgl