]> git.tdb.fi Git - builder.git/blob - source/feature.h
Add Id tag to all files
[builder.git] / source / feature.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef FEATURE_H_
9 #define FEATURE_H_
10
11 struct Feature
12 {
13         std::string name;
14         std::string descr;
15
16         Feature(const std::string &n, const std::string &d): name(n), descr(d) { }
17 };
18 typedef std::list<Feature> FeatureList;
19
20 #endif