summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_cascade_parameters.hpp
blob: bacf886b6fd7f678c733b44dcf8786638ea6c479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef STYLE_CASCADE_PARAMETERS
#define STYLE_CASCADE_PARAMETERS

#include <mbgl/map/mode.hpp>
#include <mbgl/util/chrono.hpp>
#include <mbgl/style/types.hpp>

#include <vector>

namespace mbgl {

class PropertyTransition;

class StyleCascadeParameters {
public:
    std::vector<ClassID> classes;
    TimePoint now;
    PropertyTransition transition;
};

} // namespace mbgl

#endif