summaryrefslogtreecommitdiff
path: root/shell/source/tools/lngconvex/defs.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/tools/lngconvex/defs.hxx')
-rw-r--r--shell/source/tools/lngconvex/defs.hxx14
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/source/tools/lngconvex/defs.hxx b/shell/source/tools/lngconvex/defs.hxx
new file mode 100644
index 000000000000..4304a434b486
--- /dev/null
+++ b/shell/source/tools/lngconvex/defs.hxx
@@ -0,0 +1,14 @@
+#ifndef _DEFS_HXX_
+#define _DEFS_HXX_
+
+#include <vector>
+#include <string>
+#include <memory>
+
+typedef std::vector<std::string> StringList_t;
+typedef std::auto_ptr<StringList_t> StringListPtr_t;
+
+typedef std::vector<int> IntegerList_t;
+typedef std::auto_ptr<IntegerList_t> IntegerListPtr_t;
+
+#endif