#include <MRCMisc/exports.h>
Go to the source code of this file.
Typedefs | |
typedef struct MR_std_ostream | MR_std_ostream |
A C++ output stream. | |
typedef struct MR_std_istream | MR_std_istream |
A C++ input stream. | |
Functions | |
MRC_API MR_std_ostream * | MR_GetStdCout (void) |
MRC_API MR_std_ostream * | MR_GetStdCerr (void) |
MRC_API MR_std_ostream * | MR_GetStdClog (void) |
MRC_API MR_std_istream * | MR_GetStdCin (void) |
typedef struct MR_std_istream MR_std_istream |
A C++ input stream.
typedef struct MR_std_ostream MR_std_ostream |
A C++ output stream.
MRC_API MR_std_ostream * MR_GetStdCerr | ( | void | ) |
Returns the stderr
stream, buffered. The returned pointer will never be null. It is non-owning, do NOT destroy it.
MRC_API MR_std_istream * MR_GetStdCin | ( | void | ) |
Returns the stdin
stream. The returned pointer will never be null. It is non-owning, do NOT destroy it.
MRC_API MR_std_ostream * MR_GetStdClog | ( | void | ) |
Returns the stderr
stream, unbuffered. The returned pointer will never be null. It is non-owning, do NOT destroy it.
MRC_API MR_std_ostream * MR_GetStdCout | ( | void | ) |
Returns the stdout
stream. The returned pointer will never be null. It is non-owning, do NOT destroy it.