summaryrefslogtreecommitdiff
path: root/src/mbgl/style/light_property.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/light_property.hpp')
-rw-r--r--src/mbgl/style/light_property.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mbgl/style/light_property.hpp b/src/mbgl/style/light_property.hpp
new file mode 100644
index 0000000000..11a2bdf4c9
--- /dev/null
+++ b/src/mbgl/style/light_property.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <mbgl/style/properties.hpp>
+#include <mbgl/style/property_value.hpp>
+#include <mbgl/renderer/property_evaluator.hpp>
+
+namespace mbgl {
+namespace style {
+
+template <class T>
+class LightProperty {
+public:
+ using EvaluatorType = PropertyEvaluator<T>;
+ using Type = T;
+ static constexpr bool IsDataDriven = false;
+};
+
+} // namespace style
+} // namespace mbgl