v0.14.0
Private Member Functions | List of all members
MoFEM::LogManager::InternalData::SelfStreamBuf Class Reference
Inheritance diagram for MoFEM::LogManager::InternalData::SelfStreamBuf:
[legend]
Collaboration diagram for MoFEM::LogManager::InternalData::SelfStreamBuf:
[legend]

Private Member Functions

virtual int sync ()
 

Detailed Description

Definition at line 37 of file LogManager.cpp.

Member Function Documentation

◆ sync()

virtual int MoFEM::LogManager::InternalData::SelfStreamBuf::sync ( )
inlineprivatevirtual

Definition at line 38 of file LogManager.cpp.

38  {
39  if (!this->str().empty()) {
40  PetscFPrintf(PETSC_COMM_SELF, LogManager::dummy_mofem_fd, "%s",
41  this->str().c_str());
42  this->str("");
43  }
44  return 0;
45  }

The documentation for this class was generated from the following file:
MoFEM::LogManager::dummy_mofem_fd
static FILE * dummy_mofem_fd
Dummy file pointer (DO NOT USE)
Definition: LogManager.hpp:191