FileStream
-
class FileStream
Bases:
iostream
Implements a C++ stream object suitable for reading from and/or writing to files on disk. This is similar to fstream, but it provides low-level support for Panda’s simple-threading implementation (using this interface will block only the current thread, rather than the entire process, on I/O waits).
Inheritance diagram
-
FileStream(void)
-
explicit FileStream(char const *filename, std::ios_base::openmode mode = ::std::ios_base::in)
-
void close(void)
-
void open(char const *filename, std::ios_base::openmode mode = ::std::ios_base::in)
-
FileStream(void)