]> git.tdb.fi Git - builder.git/blobdiff - source/feature.h
Adjust requires to library changes
[builder.git] / source / feature.h
diff --git a/source/feature.h b/source/feature.h
new file mode 100644 (file)
index 0000000..a42e825
--- /dev/null
@@ -0,0 +1,13 @@
+#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