summaryrefslogtreecommitdiff
path: root/shell/source/tools/lngconvex/defs.hxx
blob: 8b2dbb218cae62e8181e3ebe300d9726b37742e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#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

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */