summaryrefslogtreecommitdiff
path: root/include/llmr/style/layer_description.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/llmr/style/layer_description.hpp')
-rw-r--r--include/llmr/style/layer_description.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/llmr/style/layer_description.hpp b/include/llmr/style/layer_description.hpp
new file mode 100644
index 0000000000..405c884e52
--- /dev/null
+++ b/include/llmr/style/layer_description.hpp
@@ -0,0 +1,20 @@
+#ifndef LLMR_STYLE_LAYER_DESCRIPTION
+#define LLMR_STYLE_LAYER_DESCRIPTION
+
+#include <string>
+#include <vector>
+
+namespace llmr {
+
+class LayerDescription {
+public:
+ std::string name;
+ std::string bucket_name;
+ std::vector<LayerDescription> child_layer;
+};
+
+std::ostream& operator<<(std::ostream&, const LayerDescription& layer);
+
+}
+
+#endif