https://mooseframework.inl.gov
Functions
JSONOutput.C File Reference

Go to the source code of this file.

Functions

 registerMooseObjectAliased ("MooseApp", JSONOutput, "JSON")
 
template<>
void dataStore (std::ostream &stream, nlohmann::json &json, void *)
 
template<>
void dataLoad (std::istream &stream, nlohmann::json &json, void *)
 

Function Documentation

◆ dataLoad()

template<>
void dataLoad ( std::istream &  stream,
nlohmann::json &  json,
void  
)

Definition at line 244 of file JSONOutput.C.

245 {
246  stream >> json;
247 }

◆ dataStore()

template<>
void dataStore ( std::ostream &  stream,
nlohmann::json &  json,
void  
)

Definition at line 237 of file JSONOutput.C.

238 {
239  stream << json;
240 }

◆ registerMooseObjectAliased()

registerMooseObjectAliased ( "MooseApp"  ,
JSONOutput  ,
"JSON"   
)