]> git.tdb.fi Git - builder.git/blob - source/feature.cpp
Further changes for library compatibility
[builder.git] / source / feature.cpp
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include "feature.h"
9
10 Feature::Loader::Loader(Feature &f):
11         Msp::DataFile::ObjectLoader<Feature>(f)
12 {
13         add("description", &Feature::descr);
14         add("default",     &Feature::def_value);
15 }