]> git.tdb.fi Git - builder.git/blobdiff - source/feature.h
Base config options directly on features
[builder.git] / source / feature.h
index e5176c46083a48d0b9cb6fbd439cebf3bc1c1a3d..3c13a5a01c5fdb3990a9d81eb85b623e25f2686c 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2007, 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef FEATURE_H_
 #define FEATURE_H_
 
@@ -19,12 +12,10 @@ struct Feature
        };
 
        std::string name;
-       std::string descr;
-       std::string def_value;
+       std::string description;
+       std::string default_value;
 
        Feature(const std::string &n): name(n) { }
 };
 
-typedef std::list<Feature> FeatureList;
-
 #endif