Files
libreoffice/shell/source/tools/lngconvex/defs.hxx
Tino Rachui f4990af403 #97684#
2002-08-26 09:54:46 +00:00

15 lines
298 B
C++

#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