]> git.tdb.fi Git - builder.git/blob - source/feature.h
Replace per-file copyright notices with a single file
[builder.git] / source / feature.h
1 #ifndef FEATURE_H_
2 #define FEATURE_H_
3
4 #include <msp/datafile/objectloader.h>
5
6 struct Feature
7 {
8         class Loader: public Msp::DataFile::ObjectLoader<Feature>
9         {
10         public:
11                 Loader(Feature &);
12         };
13
14         std::string name;
15         std::string descr;
16         std::string def_value;
17
18         Feature(const std::string &n): name(n) { }
19 };
20
21 typedef std::list<Feature> FeatureList;
22
23 #endif