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

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

namespace llmr {

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

}

#endif