Update ooo320-m1
[ooovba.git] / shell / source / tools / lngconvex / defs.hxx
blob4304a434b4869f30fae146fd3c6a638ca9d7b866
1 #ifndef _DEFS_HXX_
2 #define _DEFS_HXX_
4 #include <vector>
5 #include <string>
6 #include <memory>
8 typedef std::vector<std::string> StringList_t;
9 typedef std::auto_ptr<StringList_t> StringListPtr_t;
11 typedef std::vector<int> IntegerList_t;
12 typedef std::auto_ptr<IntegerList_t> IntegerListPtr_t;
14 #endif