repo.or.cz
/
rofl0r-df-libgraphics.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make it possible to override CXX from the command line
[rofl0r-df-libgraphics.git]
/
g_src
/
command_line.h
blob
e2606fb4695019d93215683ae73e46152e3723a1
1
class
command_linest
2
{
3
public
:
4
string original
;
5
stringvectst arg_vect
;
6
7
long
gen_id
;
8
unsigned long
world_seed
;
9
char
use_seed
;
10
string world_param
;
11
char
use_param
;
12
13
14
15
void
init
(
const
string
&
str
);
16
char
grab_arg
(
string
&
source
,
long
&
pos
);
17
void
handle_arg
(
string
&
arg
);
18
19
command_linest
()
20
{
21
gen_id
=-
1
;
22
use_seed
=
0
;
23
use_param
=
0
;
24
}
25
};