summaryrefslogtreecommitdiff
path: root/src/style/layer_description.cpp
blob: d4b8b7d67876f8399b4f2a860abc3cda8619a3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <llmr/style/layer_description.hpp>

#include <iostream>

std::ostream& llmr::operator<<(std::ostream& os, const LayerDescription& layer) {
    os << "Structure: " << layer.name << std::endl;
    os << "  - bucket_name: " << layer.bucket_name << std::endl;
    for (const LayerDescription& value : layer.child_layer) {
        os << "  - child_layer: " << value << std::endl;
    }
    return os;
}