Subversion Repositories spk

Rev

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

Rev 9 Rev 10
Line 11... Line 11...
11
	}
11
	}
12
 
12
 
13
	void CStringList::clear()
13
	void CStringList::clear()
14
	{
14
	{
15
		this->destroy(true);
15
		this->destroy(true);
16
	}
-
 
17
	const String &CStringList::firstStr() const
-
 
18
	{
-
 
19
		CListNode<SStringList> *head = ((CLinkList<SStringList> *)this)->Front();
-
 
20
		if ( head ) {
-
 
21
			return head->Data()->str;
-
 
22
		}
-
 
23
		return String();
-
 
24
	}
16
	}
25
}
17
}
26
/*
18
/*
27
StringList::StringList(void)
19
StringList::StringList(void)
28
{
20
{