summaryrefslogtreecommitdiff
path: root/platform/android/src/style/conversion/types_string_values.hpp.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/style/conversion/types_string_values.hpp.ejs')
-rw-r--r--platform/android/src/style/conversion/types_string_values.hpp.ejs48
1 files changed, 0 insertions, 48 deletions
diff --git a/platform/android/src/style/conversion/types_string_values.hpp.ejs b/platform/android/src/style/conversion/types_string_values.hpp.ejs
deleted file mode 100644
index bf52919741..0000000000
--- a/platform/android/src/style/conversion/types_string_values.hpp.ejs
+++ /dev/null
@@ -1,48 +0,0 @@
-<%
- const properties = locals.properties;
--%>
-// This file is generated. Edit android/platform/scripts/generate-style-code.js, then run `make android-style-code`.
-#pragma once
-
-#include <mbgl/style/types.hpp>
-
-#include <string>
-#include <stdexcept>
-
-namespace mbgl {
-namespace android {
-namespace conversion {
-
- // visibility
- inline std::string toString(mbgl::style::VisibilityType value) {
- switch (value) {
- case mbgl::style::VisibilityType::Visible:
- return "visible";
- break;
- case mbgl::style::VisibilityType::None:
- return "none";
- break;
- default:
- throw std::runtime_error("Not implemented");
- }
- }
-
-<% for (const property of properties) { -%>
- // <%- property.name %>
- inline std::string toString(mbgl::style::<%- propertyNativeType(property) %> value) {
- switch (value) {
-<% for (const value in property.values) { -%>
- case mbgl::style::<%- propertyNativeType(property) %>::<%- camelize(value) %>:
- return "<%- value %>";
- break;
-<% } -%>
- default:
- throw std::runtime_error("Not implemented");
- }
- }
-
-<% } -%>
-
-} // namespace conversion
-} // namespace android
-} // namespace mbgl