Subversion Repositories spk

Rev

Go to most recent revision | Details | 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();
17
		const String &firstStr() const;
8 cycrow 18
	};
19
} //NAMESPACE
20