blob: a5b907b4dc2729e674b6f43a52073c08ef1ef2ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<%
const properties = locals.properties;
-%>
// clang-format off
// This file is generated. Do not edit.
#pragma once
#include <mbgl/style/conversion.hpp>
#include <mbgl/style/property_value.hpp>
#include <mbgl/style/transition_options.hpp>
#include <mbgl/style/types.hpp>
#include <mbgl/util/immutable.hpp>
namespace mbgl {
namespace style {
class LightObserver;
class Light {
public:
Light();
~Light();
// Dynamic properties
optional<conversion::Error> setProperty(const std::string& name, const conversion::Convertible& value);
<% for (const property of properties) { -%>
static <%- evaluatedType(property) %> getDefault<%- camelize(property.name) %>();
<%- propertyValueType(property) %> get<%- camelize(property.name) %>() const;
void set<%- camelize(property.name) %>(<%- propertyValueType(property) %>);
void set<%- camelize(property.name) %>Transition(const TransitionOptions&);
TransitionOptions get<%- camelize(property.name) %>Transition() const;
<% } -%>
class Impl;
Immutable<Impl> impl;
Mutable<Impl> mutableImpl() const;
LightObserver* observer = nullptr;
void setObserver(LightObserver*);
};
} // namespace style
} // namespace mbgl
// clang-format on
|