make it possible to override CXX from the command line
[rofl0r-df-libgraphics.git] / g_src / textlines.h
blobde2dbfebcee6dfe5712b38f05eec779440856098
1 #ifndef TEXTLINES_H
2 #define TEXTLINES_H
4 struct textlinesst
6 stringvectst text;
10 void load_raw_to_lines(char *filename);
12 void clean_lines()
14 text.clean();
16 void copy_from(textlinesst &ot)
18 text.copy_from(ot.text);
22 #endif