]> git.tdb.fi Git - builder.git/blobdiff - source/feature.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / feature.h
diff --git a/source/feature.h b/source/feature.h
deleted file mode 100644 (file)
index 657c860..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef FEATURE_H_
-#define FEATURE_H_
-
-#include <msp/datafile/objectloader.h>
-
-struct Feature
-{
-       class Loader: public Msp::DataFile::ObjectLoader<Feature>
-       {
-       public:
-               Loader(Feature &);
-       };
-
-       std::string name;
-       std::string descr;
-       std::string def_value;
-
-       Feature(const std::string &n): name(n) { }
-};
-
-typedef std::list<Feature> FeatureList;
-
-#endif