+ Constructor. You probably won't use it. See the Note for details.
+
+ It is seldom used by the application programmer but you will need it if
+ you are writing your own virtual FS. For example you may need something
+ similar to wxMemoryInputStream, but because wxMemoryInputStream doesn't
+ free the memory when destroyed and thus passing a memory stream pointer
+ into wxFSFile constructor would lead to memory leaks, you can write your
+ own class derived from wxFSFile:
+
+ @code
+ class wxMyFSFile : public wxFSFile
+ {
+ private:
+ void *m_Mem;
+ public:
+ wxMyFSFile(.....)
+ ~wxMyFSFile() {free(m_Mem);}
+ // of course dtor is virtual ;-)
+ };
+ @endcode
+
+ If you are not sure of the meaning of these params, see the description
+ of the GetXXXX() functions.