Searched refs:wxFileConfigLineList (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dfileconf.h94 class WXDLLIMPEXP_FWD_BASE wxFileConfigLineList; variable in typeref:class:WXDLLIMPEXP_FWD_BASE
177 wxFileConfigLineList *LineListAppend(const wxString& str);
178 wxFileConfigLineList *LineListInsert(const wxString& str,
179 wxFileConfigLineList *pLine); // NULL => Prepend()
180 void LineListRemove(wxFileConfigLineList *pLine);
220 wxFileConfigLineList *m_linesHead, // head of the linked list
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dfileconf.cpp113 // wxFileConfigLineList
117 class wxFileConfigLineList class
120 void SetNext(wxFileConfigLineList *pNext) { m_pNext = pNext; }
121 void SetPrev(wxFileConfigLineList *pPrev) { m_pPrev = pPrev; }
124 wxFileConfigLineList(const wxString& str, function in class:wxFileConfigLineList
125 wxFileConfigLineList *pNext = NULL) : m_strLine(str)
129 wxFileConfigLineList *Next() const { return m_pNext; }
130 wxFileConfigLineList *Prev() const { return m_pPrev; }
138 wxFileConfigLineList *m_pNext, // next node
141 DECLARE_NO_COPY_CLASS(wxFileConfigLineList)
[all...]

Completed in 32 milliseconds