+ Opening mode
+ */
+ enum OpenMode { read, write, read_write, write_append, write_excl };
+
+ /**
+ Standard file descriptors
+ */
+ enum { fd_invalid = -1, fd_stdin, fd_stdout, fd_stderr };
+
+ /**
+ Default constructor.
+ */
+ wxFile();
+
+ /**
+ Opens a file with a filename.