X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffeature.h;h=0dca1f524ed315cf681df464abd278a2da384879;hb=1ed833343bc83b83c5f61cbfd74423bbba677a04;hp=f0134db8dbdb712d9b276d57addd4203a96359db;hpb=ae1ab287b544cc19d185024fa64e475a957313e4;p=builder.git diff --git a/source/feature.h b/source/feature.h index f0134db..0dca1f5 100644 --- a/source/feature.h +++ b/source/feature.h @@ -16,11 +16,11 @@ struct Feature std::string name; std::string description; - std::string default_value; - std::list choices; - bool exported; + std::string default_value = "no"; + std::vector choices; + bool exported = false; - Feature(const std::string &); + Feature(const std::string &n): name(n) { } }; #endif