forward declaration for combobox members

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2004-08-07 05:18:35 +00:00
parent 9fa2073f08
commit 18274a5192

View File

@ -21,6 +21,11 @@
WXDLLEXPORT_DATA(extern const wxChar*) wxComboBoxNameStr;
// forward declaration of private implementation classes
class wxComboBoxText ;
class wxComboBoxChoice ;
// Combobox item
class WXDLLEXPORT wxComboBox : public wxControl, public wxComboBoxBase
{
@ -128,8 +133,8 @@ protected:
void FreeData();
// the subcontrols
wxTextCtrl* m_text;
wxChoice* m_choice;
wxComboBoxText* m_text;
wxComboBoxChoice* m_choice;
};
#endif