repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update ooo320-m1
[ooovba.git]
/
shell
/
source
/
tools
/
lngconvex
/
defs.hxx
blob
4304a434b4869f30fae146fd3c6a638ca9d7b866
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