Subversion Repositories spk

Rev

Rev 10 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 cycrow 1
#pragma once
2
 
3
#include "String.h"
4
#include "../lists.h"
5
 
6
namespace Utils {
7
	typedef struct {
8
		String str;
9
		String data;
10
	} SStringList;
11
 
12
	class SPKEXPORT CStringList : public CLinkList<SStringList>
13
	{
14
	public:
15
		void pushBack(const String &str, const String &data);
9 cycrow 16
		void clear();
8 cycrow 17
	};
18
} //NAMESPACE
19