summaryrefslogtreecommitdiff
path: root/src/mbgl/style/property_transition.hpp
blob: 1cf1de0932fab4163214d4e67b8daee87f8501e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MBGL_STYLE_PROPERTY_TRANSITION
#define MBGL_STYLE_PROPERTY_TRANSITION

#include <mbgl/util/chrono.hpp>

#include <mapbox/optional.hpp>
#include <cstdint>

namespace mbgl {

class PropertyTransition {
public:
    mapbox::util::optional<Duration> duration;
    mapbox::util::optional<Duration> delay;
};

}

#endif