summaryrefslogtreecommitdiff
path: root/src/mbgl/style/property_transition.hpp
blob: 63bbf4607dd238636158c249115750820866ae38 (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;
};

} // namespace mbgl

#endif