summaryrefslogtreecommitdiff
path: root/include/llmr/style/class_description.hpp
blob: 3130f8d78fe40d450c37603661f83bfe24066bd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef LLMR_STYLE_CLASS_DESCRIPTION
#define LLMR_STYLE_CLASS_DESCRIPTION

#include <string>
#include <vector>
#include <map>
#include "properties.hpp"

namespace llmr {

class ClassDescription {
public:
    std::map<std::string, FillClass> fill;
    std::map<std::string, StrokeClass> stroke;
};


}

#endif