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 43... Line 43...
43
		CStringListIterator end() const;
43
		CStringListIterator end() const;
44
 
44
 
45
		Utils::String front() const;
45
		Utils::String front() const;
46
		Utils::String back() const;
46
		Utils::String back() const;
47
 
47
 
48
		Utils::SStringList *get(int i);
48
		Utils::SStringList *get(int i) const;
49
 
49
 
50
		bool changeData(const Utils::String &str, const Utils::String &data, bool bIgnoreCase = false);
50
		bool changeData(const Utils::String &str, const Utils::String &data, bool bIgnoreCase = false);
51
		bool contains(const Utils::String &data, bool bIgnoreCase = false) const;
51
		bool contains(const Utils::String &data, bool bIgnoreCase = false) const;
52
		bool containsData(const Utils::String& str, bool bIgnoreCase = false) const;
52
		bool containsData(const Utils::String& str, bool bIgnoreCase = false) const;
53
		bool containsStringAndData(const Utils::String& str, const Utils::String &data, bool bIgnoreCase = false) const;
53
		bool containsStringAndData(const Utils::String& str, const Utils::String &data, bool bIgnoreCase = false) const;
Line 58... Line 58...
58
		bool remove(const Utils::String &str, bool single = true);
58
		bool remove(const Utils::String &str, bool single = true);
59
		void removeAt(int at);
59
		void removeAt(int at);
60
 
60
 
61
		size_t size() const;
61
		size_t size() const;
62
		bool empty() const;
62
		bool empty() const;
-
 
63
 
-
 
64
		const Utils::SStringList* operator[](int num) const;
63
	};
65
	};
64
} //NAMESPACE
66
} //NAMESPACE
65
 
67