Subversion Repositories spk

Rev

Rev 8 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8 Rev 14
Line 50... Line 50...
50
                        PushBack ( node->str, node->data );
50
                        PushBack ( node->str, node->data );
51
		}
51
		}
52
		return (*this);
52
		return (*this);
53
	}
53
	}
54
 
54
 
55
	SStringList *Head () { return m_head; }
55
	SStringList *Head () const { return m_head; }
56
	SStringList *Tail () { return m_tail; }
56
	SStringList *Tail () const { return m_tail; }
57
 
57
 
58
	bool Empty() { if ( m_head ) return false; return true; }
58
	bool Empty() { if ( m_head ) return false; return true; }
59
 
59
 
60
	void Clear()
60
	void Clear()
61
	{
61
	{