]> 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 36d85bf..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef FEATURE_H_
-#define FEATURE_H_
-
-struct Feature
-{
-       std::string name;
-       std::string descr;
-
-       Feature(const std::string &n, const std::string &d): name(n), descr(d) { }
-};
-typedef std::list<Feature> FeatureList;
-
-#endif