Subversion Repositories spk

Rev

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

Rev 160 Rev 165
Line 122... Line 122...
122
		if (front)
122
		if (front)
123
			return front->str;
123
			return front->str;
124
		return Utils::String::Null();
124
		return Utils::String::Null();
125
	}
125
	}
126
 
126
 
127
	Utils::SStringList *CStringList::get(int i)
127
	Utils::SStringList *CStringList::get(int i) const
128
	{
128
	{
129
		return _lList->get(i);
129
		return _lList->get(i);
130
	}
130
	}
131
 
131
 
132
	Utils::String CStringList::findData(const Utils::String &data, bool bIgnoreCase) const
132
	Utils::String CStringList::findData(const Utils::String &data, bool bIgnoreCase) const
Line 246... Line 246...
246
 
246
 
247
	bool CStringList::empty() const
247
	bool CStringList::empty() const
248
	{
248
	{
249
		return _lList->empty();
249
		return _lList->empty();
250
	}
250
	}
-
 
251
 
-
 
252
	const Utils::SStringList* CStringList::operator[](int num) const
-
 
253
	{
-
 
254
		return _lList->get(num);
-
 
255
	}
-
 
256
 
251
}
257
}