summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsoldep/inc/XmlBuildListDef.hxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/soldep/inc/XmlBuildListDef.hxx b/soldep/inc/XmlBuildListDef.hxx
new file mode 100755
index 000000000000..94e8e3d6143c
--- /dev/null
+++ b/soldep/inc/XmlBuildListDef.hxx
@@ -0,0 +1,20 @@
+#ifndef _XMLBUILDLISTDEF_HXX
+#define _XMLBUILDLISTDEF_HXX
+
+enum DepTypes
+{
+ mdsimple,
+ mdalways,
+ mdforce
+};
+
+#define DEP_MD_SIMPLE 1;
+#define DEP_MD_ALWAYS 2;
+#define DEP_MD_FORCE 4;
+
+static const char * DEP_MD_SIMPLE_STR = "md-simple";
+static const char * DEP_MD_ALWAYS_STR = "md-always";
+static const char * DEP_MD_FORCE_STR = "md-force";
+static const char * XML_ALL = "all";
+
+#endif \ No newline at end of file