Subversion Repositories spk

Rev

Rev 284 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 284 Rev 285
Line 98... Line 98...
98
	const SString &operator= ( unsigned long l );
98
	const SString &operator= ( unsigned long l );
99
	const SString &operator= ( float l );
99
	const SString &operator= ( float l );
100
	const SString &operator= ( double l );
100
	const SString &operator= ( double l );
101
 
101
 
102
	// subscript operators
102
	// subscript operators
-
 
103
#ifdef _WIN32
-
 
104
	const unsigned char operator[] (int num) const;
-
 
105
	unsigned char& operator[] (int num);
-
 
106
#else
103
	const unsigned char operator[] (size_t num ) const;
107
	const unsigned char operator[] (size_t num) const;
104
	unsigned char &operator[] (size_t num );
108
	unsigned char& operator[] (size_t num);
-
 
109
#endif
105
 
110
 
106
	// addition operators
111
	// addition operators
107
	SString operator+ ( const char *str ) const;
112
	SString operator+ ( const char *str ) const;
108
	SString operator+ ( const unsigned char *str ) const;
113
	SString operator+ ( const unsigned char *str ) const;
109
	SString operator+ ( const std::string &str ) const;
114
	SString operator+ ( const std::string &str ) const;