X-Git-Url: http://git.tdb.fi/?p=builder.git;a=blobdiff_plain;f=source%2Ffeature.cpp;h=7bf9a578e0344a6321a1b1e9516af565221b3c6a;hp=712004fc6125a9b5f3fb616b6464bb91d70d80c1;hb=ae1ab287b544cc19d185024fa64e475a957313e4;hpb=74ea8208bb1aa1d9afc9657a4cdfac6714241887 diff --git a/source/feature.cpp b/source/feature.cpp index 712004f..7bf9a57 100644 --- a/source/feature.cpp +++ b/source/feature.cpp @@ -5,7 +5,8 @@ using namespace Msp; Feature::Feature(const string &n): name(n), - default_value("no") + default_value("no"), + exported(false) { } @@ -15,6 +16,7 @@ Feature::Loader::Loader(Feature &f): add("choice", &Loader::choice); add("description", &Feature::description); add("default", &Feature::default_value); + add("export", &Feature::exported); } void Feature::Loader::choice(const string &c)