summaryrefslogtreecommitdiff
path: root/g_src/textlines.h
blob: de2dbfebcee6dfe5712b38f05eec779440856098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TEXTLINES_H
#define TEXTLINES_H

struct textlinesst
{
	stringvectst text;



	void load_raw_to_lines(char *filename);

	void clean_lines()
		{
		text.clean();
		}
	void copy_from(textlinesst &ot)
		{
		text.copy_from(ot.text);
		}
};

#endif