Go to the source code of this file.
|
| libMesh |
| The following methods are specializations for using the libMesh::Parallel::packed_range_* routines for std::strings.
|
|
| libMesh::MeshTools |
|
◆ dataLoad()
template<>
void dataLoad |
( |
std::istream & |
stream, |
|
|
SubAppBackups & |
backups, |
|
|
void * |
context |
|
) |
| |
|
inline |
Definition at line 446 of file MultiApp.h.
448 MultiApp * multi_app = static_cast<MultiApp *>(context);
451 mooseError(
"Error loading std::vector<Backup*>");
453 for (
unsigned int i = 0; i < backups.size(); i++)
454 dataLoad(stream, backups[i], context);
◆ dataStore()
template<>
void dataStore |
( |
std::ostream & |
stream, |
|
|
SubAppBackups & |
backups, |
|
|
void * |
context |
|
) |
| |
|
inline |
Definition at line 431 of file MultiApp.h.
433 MultiApp * multi_app = static_cast<MultiApp *>(context);
438 mooseError(
"Error storing std::vector<Backup*>");
440 for (
unsigned int i = 0; i < backups.size(); i++)
◆ validParams< MultiApp >()