Subversion Repositories spk

Rev

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

Rev 81 Rev 85
Line 40... Line 40...
40
	const String &format(const char *sFormat, ...);
40
	const String &format(const char *sFormat, ...);
41
	
41
	
42
	static String PadNumber(long iNum, int iAmount);
42
	static String PadNumber(long iNum, int iAmount);
43
	static String Number(long l) { return String(l); }
43
	static String Number(long l) { return String(l); }
44
	static String Format(const char *sFormat, ...);
44
	static String Format(const char *sFormat, ...);
-
 
45
	static String Null();
45
 
46
 
46
	long toLong() const;
47
	long toLong() const;
47
	double toDouble() const;
48
	double toDouble() const;
48
	float toFloat() const;
49
	float toFloat() const;
49
 
50