+/*
+ * Quick example of your own Separator class...
+ */
+class wxMySeparatorLine : public wxStaticLine
+{
+public:
+ wxMySeparatorLine()
+ {}
+ wxMySeparatorLine( wxWindow *parent, wxWindowID id)
+ : wxStaticLine( parent, id)
+ {}
+
+protected:
+ virtual void DoSetSize( int x, int y,
+ int width, int height,
+ int sizeFlags = wxSIZE_AUTO);
+};
+