Subversion Repositories spk

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 cycrow 1
 
2
#include "StringList.h"
3
 
4
namespace Utils {
5
	void CStringList::pushBack(const String &str, const String &data)
6
	{
7
		SStringList *strNode = new SStringList;
8
		strNode->str = str;
9
		strNode->data = data;
10
		this->push_back(strNode);
11
	}
12
}
13
/*
14
StringList::StringList(void)
15
{
16
}
17
 
18
StringList::~StringList(void)
19
{
20
}
21
*/