summaryrefslogtreecommitdiff
path: root/src/mbgl/style/cascade_parameters.hpp
blob: e0333741dd5ca24abd9fb2bb0d54d28c6bb64f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <mbgl/util/chrono.hpp>
#include <mbgl/style/class_dictionary.hpp>
#include <mbgl/style/transition_options.hpp>

#include <vector>

namespace mbgl {
namespace style {

class CascadeParameters {
public:
    std::vector<ClassID> classes;
    TimePoint now;
    TransitionOptions transition;
};

} // namespace style
} // namespace mbgl