Subversion Repositories spk

Rev

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

Rev 94 Rev 101
Line 193... Line 193...
193

193

194
bool String::operator!= ( const char *str ) const				{ return (this->compare(str)) ? true : false; }
194
bool String::operator!= ( const char *str ) const				{ return (this->compare(str)) ? true : false; }
195
bool String::operator!= ( const unsigned char *str ) const	{ return (this->compare((const char *)str)) ? true : false; }
195
bool String::operator!= ( const unsigned char *str ) const	{ return (this->compare((const char *)str)) ? true : false; }
196
bool String::operator!= ( const std::string &str ) const		{ return (this->compare(str)) ? true : false; }
196
bool String::operator!= ( const std::string &str ) const		{ return (this->compare(str)) ? true : false; }
197
bool String::operator!= ( const String &str ) const			{ return (this->compare(str)) ? true : false; }
197
bool String::operator!= ( const String &str ) const			{ return (this->compare(str)) ? true : false; }
-
 
198

-
 
199
bool String::operator !() const
-
 
200
{
-
 
201
	return this->empty();
-
 
202
}
198

203

199
bool String::Compare(const String &str, bool bCaseSensative) const
204
bool String::Compare(const String &str, bool bCaseSensative) const
200
{
205
{
201
	if ( bCaseSensative ) {
206
	if ( bCaseSensative ) {
202
		return (this->compare(str) == 0) ? true : false;
207
		return (this->compare(str) == 0) ? true : false;