summaryrefslogtreecommitdiff
path: root/shell/source/tools/lngconvex/defs.hxx
blob: 4304a434b4869f30fae146fd3c6a638ca9d7b866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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