The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
class BaseView : public EditorBase{ public: BaseView(wxWindow* parent, const wxString& title); virtual ~BaseView(); virtual bool Close(); protected: private:};
bool EditorBase::Close(){ Destroy(); return true;}