44 #ifndef EPETRAEXT_XMLWRITER_H 45 #define EPETRAEXT_XMLWRITER_H 48 #include "Teuchos_RCP.hpp" 179 void Create(
const std::string& Label);
188 void Write(
const std::string& Label,
const Epetra_Map& Map);
197 void Write(
const std::string& Label,
const std::vector<std::string>& Content);
200 void Write(
const std::string& Label,
const std::string& Text)
202 std::vector<std::string> Content;
203 Content.push_back(Text);
204 Write(Label, Content);
208 void Write(
const std::string& Label, Teuchos::ParameterList& List);
215 std::string FileName_;
class XMLWriter: A class for writing Trilinos objects to XML files.
EpetraExt::BlockCrsMatrix: A class for constructing a distributed block matrix.
void Write(const std::string &Label, const std::string &Text)
Writes input std::string using label Label.