class wxPyFileSystemHandler : public wxFileSystemHandler
{
public:
- %pythonAppend wxPyFileSystemHandler "self._setCallbackInfo(self, FileSystemHandler)";
+ %pythonAppend wxPyFileSystemHandler setCallbackInfo(FileSystemHandler)
wxPyFileSystemHandler();
class wxFileSystem : public wxObject {
public:
+ // turn off this typemap
+ %typemap(out) wxFileSystem*;
+
wxFileSystem();
~wxFileSystem();
+ // Turn it back on again
+ %typemap(out) wxFileSystem* { $result = wxPyMake_wxObject($1, $owner); }
+
void ChangePathTo(const wxString& location, bool is_dir = false);
wxString GetPath();