Subversion Repositories spk

Rev

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

Rev 101 Rev 104
Line 36... Line 36...
36
	void fromFloat(float f);
36
	void fromFloat(float f);
37
	void fromFloat(float f, int dp);
37
	void fromFloat(float f, int dp);
38
	void fromDouble(double f);
38
	void fromDouble(double f);
39
	void fromDouble(double f, int dp);
39
	void fromDouble(double f, int dp);
40
	const String &format(const char *sFormat, ...);
40
	const String &format(const char *sFormat, ...);
-
 
41
	const String &arg(const String &s1);
-
 
42
	const String &arg(const String &s1, const String &s2);
-
 
43
	const String &arg(const String &s1, const String &s2, const String &s3);
-
 
44
	const String &arg(const String &s1, const String &s2, const String &s3, const String &s4);
-
 
45
	const String &arg(const String &s1, const String &s2, const String &s3, const String &s4, const String &s5);
41
	
46
	
42
	static String PadNumber(long iNum, int iAmount);
47
	static String PadNumber(long iNum, int iAmount);
43
	static String Number(long l) { return String(l); }
48
	static String Number(long l) { return String(l); }
44
	static String Format(const char *sFormat, ...);
49
	static String Format(const char *sFormat, ...);
45
	static String Null();
50
	static String Null();
Line 172... Line 177...
172
private:
177
private:
173
	bool _isCharNumber(char c) const;
178
	bool _isCharNumber(char c) const;
174
	Utils::String::size_type _token_nextPos(const char *token, Utils::String::size_type curPos) const;
179
	Utils::String::size_type _token_nextPos(const char *token, Utils::String::size_type curPos) const;
175
};
180
};
176
 
181
 
177
String operator+(const char *str1, const String &str2);
182
SPKEXPORT String operator+(const char *str1, const String &str2);
178
}
183
}