summaryrefslogtreecommitdiff
path: root/include/mbgl/style/property_value.hpp
blob: 4d148dc0291985343f99b2034ed4c1cbb2518c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MBGL_STYLE_PROPERTY_VALUE
#define MBGL_STYLE_PROPERTY_VALUE

#include <mbgl/util/variant.hpp>
#include <mbgl/style/function_properties.hpp>
#include <mbgl/style/types.hpp>

namespace mbgl {

typedef util::variant<
    std::string,
    TranslateAnchorType,
    RotateAnchorType,
    Function<bool>,
    Function<float>,
    Function<Color>
> PropertyValue;

}

#endif