TODO: What does it take to get wxStackWalker on OS X?
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33082 
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
     // description is shown to the user in the report summary
     virtual void AddFile(const wxString& name, const wxString& description);
 
     // description is shown to the user in the report summary
     virtual void AddFile(const wxString& name, const wxString& description);
 
     // add an XML file containing the current or exception context and the
     // stack trace
     bool AddCurrentContext() { return AddContext(Context_Current); }
     bool AddExceptionContext() { return AddContext(Context_Exception); }
     virtual bool AddContext(Context ctx);
     // add an XML file containing the current or exception context and the
     // stack trace
     bool AddCurrentContext() { return AddContext(Context_Current); }
     bool AddExceptionContext() { return AddContext(Context_Exception); }
     virtual bool AddContext(Context ctx);
 
 #if wxUSE_CRASHREPORT
     // add a file with crash report
 
 #if wxUSE_CRASHREPORT
     // add a file with crash report
     void RemoveFile(const wxString& name);
 
 protected:
     void RemoveFile(const wxString& name);
 
 protected:
     // used by AddContext()
     virtual bool DoAddSystemInfo(wxXmlNode *nodeSystemInfo);
     virtual bool DoAddLoadedModules(wxXmlNode *nodeModules);
     virtual bool DoAddExceptionInfo(wxXmlNode *nodeContext);
     virtual void DoAddCustomContext(wxXmlNode * WXUNUSED(nodeRoot)) { }
     // used by AddContext()
     virtual bool DoAddSystemInfo(wxXmlNode *nodeSystemInfo);
     virtual bool DoAddLoadedModules(wxXmlNode *nodeModules);
     virtual bool DoAddExceptionInfo(wxXmlNode *nodeContext);
     virtual void DoAddCustomContext(wxXmlNode * WXUNUSED(nodeRoot)) { }
 
     // used by Process()
     virtual bool DoProcess();
 
     // used by Process()
     virtual bool DoProcess();