summaryrefslogtreecommitdiff
path: root/include/mbgl/style/light.hpp.ejs
blob: 601e0bd410baed6559b2c4e165eeda15e3a70b51 (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
<%
  const properties = locals.properties;
-%>
// This file is generated. Do not edit.

#pragma once
#include <mbgl/style/property_value.hpp>
#include <mbgl/style/transition_options.hpp>
#include <mbgl/style/types.hpp>

#include <memory>

namespace mbgl {
namespace style {

class Light {
public:

    class Impl;

    Light();
    ~Light();

<% 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;

<% } -%>
    std::shared_ptr<Impl> impl;
};

} // namespace style
} // namespace mbgl