summaryrefslogtreecommitdiff
path: root/include/llmr/style/property_value.hpp
blob: 9772258da85607a33488bf495f383ee51e5872b2 (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<
    FunctionProperty,
    TranslateAnchorType,
    RotateAnchorType,
    Color,
    std::string,
    bool
> PropertyValue;

}

#endif