#pragma interface "wxtree.h"
#endif
-#include <wx/string.h>
+#ifndef WX_PRECOMP
+#include "wx/object.h"
+class wxList;
+class wxDC;
+class wxMouseEvent;
+#endif
+
+#include "wx/string.h"
+
+#if wxUSE_TREELAYOUT
class WXDLLEXPORT wxTreeLayout: public wxObject
{
public:
wxTreeLayout();
+ virtual ~wxTreeLayout() { }
// Redefine these
virtual void GetChildren(long id, wxList& list) = 0;
DECLARE_DYNAMIC_CLASS(wxTreeLayoutStored)
public:
wxTreeLayoutStored(int noNodes = 200);
- ~wxTreeLayoutStored(void);
+ virtual ~wxTreeLayoutStored(void);
void Initialize(int n);
wxString HitTest(wxMouseEvent& event, wxDC& dc);
// For backward compatibility
#define wxStoredTree wxTreeLayoutStored
+#endif
+ // wxUSE_TREELAYOUT
+
#endif
// _WX_TREELAY_H_