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