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
/
textlines.h
blob
de2dbfebcee6dfe5712b38f05eec779440856098
1
#ifndef TEXTLINES_H
2
#define TEXTLINES_H
3
4
struct
textlinesst
5
{
6
stringvectst text
;
7
8
9
10
void
load_raw_to_lines
(
char
*
filename
);
11
12
void
clean_lines
()
13
{
14
text
.
clean
();
15
}
16
void
copy_from
(
textlinesst
&
ot
)
17
{
18
text
.
copy_from
(
ot
.
text
);
19
}
20
};
21
22
#endif