Subversion Repositories spk

Rev

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

Rev 216 Rev 246
Line 21... Line 21...
21
 
21
 
22
	public:
22
	public:
23
		WStringList();
23
		WStringList();
24
		~WStringList();
24
		~WStringList();
25
 
25
 
26
		void pushBack(const WString &str, const WString &data);
26
		void pushBack(const WString& str, const WString& data);
27
		void pushBack(const WString &str);
27
		void pushBack(const WString& str);
-
 
28
		void pushBackUnique(const WString& str, const WString& data);
-
 
29
		void pushBackUnique(const WString& str);
28
		void pushFront(const WString &str, const WString &data);
30
		void pushFront(const WString &str, const WString &data);
29
		void pushFront(const WString &str);
31
		void pushFront(const WString &str);
30
		void popBack();
32
		void popBack();
31
		void popFront();
33
		void popFront();
32
 
34