]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ffile.h
Common code for the same handling of wxSL_INVERSE.
[wxWidgets.git] / include / wx / ffile.h
index 0236e154bfc6d3aac06b3b5b3c3f87f6a57ac4ec..f61a97fd299d003a7fccf3a39f36d784f5d5070c 100644 (file)
@@ -96,6 +96,8 @@ public:
   bool Error() const { return ferror(m_fp) != 0; }
     // get the file name
   const wxString& GetName() const { return m_name; }
+    // type such as disk or pipe
+  wxFileKind GetKind() const { return wxGetFileKind(m_fp); }
 
   // dtor closes the file if opened
   ~wxFFile() { Close(); }