1 #ifndef ABLATELIBRARY_STREAMLOG_HPP
2 #define ABLATELIBRARY_STREAMLOG_HPP
8 namespace ablate::monitors::logs {
12 std::vector<char> buffer;
15 explicit StreamLog(std::ostream& stream = std::cout);
18 void Print(
const char*)
override;
19 void Printf(
const char*, ...)
override;
21 void Initialize(MPI_Comm comm)
override;
27 std::ostream&
GetStream()
override {
return stream; }
Definition: streamLog.hpp:9
std::ostream & GetStream() override
Definition: streamLog.hpp:27