summaryrefslogtreecommitdiff
path: root/include/llmr/style/layer_description.hpp
blob: 405c884e52b3dd9e48dbb62df5538c9a1c492ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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