std::ostream& operator<< (std::ostream &os, const MeshBase &m)Equivalent to calling print_info() above, but now you can write: Mesh mesh; std::cout << mesh << std::endl;
Definition at line 232 of file mesh_base.C.
References MeshBase::print_info().
{
m.print_info(os);
return os;
}
Author
Generated automatically by Doxygen for libMesh from the source code.