]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/include/wx/wxPython/pyistream.h
handle '&' in the names of the files in the history correctly by quoting it
[wxWidgets.git] / wxPython / include / wx / wxPython / pyistream.h
index 793315adafdb06437e9244df8c9d546ea6a573f0..0ca2da80a418d97e77d878c5287718b0f37fc5cb 100644 (file)
@@ -69,11 +69,13 @@ public:
 class wxPyCBInputStream : public wxInputStream {
 public:
     ~wxPyCBInputStream();
-    virtual size_t GetSize() const;
+    virtual wxFileOffset GetLength() const;
 
     // factory function
     static wxPyCBInputStream* create(PyObject *py, bool block=true);
 
+    wxPyCBInputStream(const wxPyCBInputStream& other);
+    
 protected:
     // can only be created via the factory
     wxPyCBInputStream(PyObject *r, PyObject *s, PyObject *t, bool block);