]> git.tdb.fi Git - builder.git/blob - source/feature.h
Adjust requires to library changes
[builder.git] / source / feature.h
1 #ifndef FEATURE_H_
2 #define FEATURE_H_
3
4 struct Feature
5 {
6         std::string name;
7         std::string descr;
8
9         Feature(const std::string &n, const std::string &d): name(n), descr(d) { }
10 };
11 typedef std::list<Feature> FeatureList;
12
13 #endif