Subversion Repositories gelsvn

Rev

Rev 25 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25 Rev 26
Line 29... Line 29...
29
		getline(ret,stringret);
29
		getline(ret,stringret);
30
		return stringret;
30
		return stringret;
31
	}
31
	}
32
 
32
 
33
	void parse(const char* str,bool& x) {
33
	void parse(const char* str,bool& x) {
34
		x = !(strcasecmp(str,"true"));
34
		x = !(stricmp(str,"true"));
35
	}
35
	}
36
 
36
 
37
	void parse(const char* str,string& x) {
37
	void parse(const char* str,string& x) {
38
		x=string(str);
38
		x=string(str);
39
	}
39
	}