1 #ifndef _DEFS_HXX_
2 #define _DEFS_HXX_
3 
4 #include <vector>
5 #include <string>
6 #include <memory>
7 
8 typedef std::vector<std::string> StringList_t;
9 typedef std::auto_ptr<StringList_t> StringListPtr_t;
10 
11 typedef std::vector<int> IntegerList_t;
12 typedef std::auto_ptr<IntegerList_t> IntegerListPtr_t;
13 
14 #endif
15