https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Functions
RestartableData.C File Reference

Go to the source code of this file.

Functions

template<>
void dataStore (std::ostream &stream, RestartableDataValue::StoreJSONParams &v, void *ctx)
 
template<>
void dataLoad (std::istream &stream, RestartableDataValue::StoreJSONParams &v, void *ctx)
 

Function Documentation

◆ dataLoad()

template<>
void dataLoad ( std::istream &  stream,
RestartableDataValue::StoreJSONParams v,
void *  ctx 
)

Definition at line 81 of file RestartableData.C.

82{
83 dataLoad(stream, v.value, ctx);
84 dataLoad(stream, v.type, ctx);
85 dataLoad(stream, v.name, ctx);
86 dataLoad(stream, v.declared, ctx);
87 dataLoad(stream, v.loaded, ctx);
88 dataLoad(stream, v.stored, ctx);
89 dataLoad(stream, v.has_context, ctx);
90}
void dataLoad(std::istream &stream, RestartableDataValue::StoreJSONParams &v, void *ctx)

Referenced by dataLoad(), and RestartableData< T >::loadInternal().

◆ dataStore()

template<>
void dataStore ( std::ostream &  stream,
RestartableDataValue::StoreJSONParams v,
void *  ctx 
)

Definition at line 68 of file RestartableData.C.

69{
70 dataStore(stream, v.value, ctx);
71 dataStore(stream, v.type, ctx);
72 dataStore(stream, v.name, ctx);
73 dataStore(stream, v.declared, ctx);
74 dataStore(stream, v.loaded, ctx);
75 dataStore(stream, v.stored, ctx);
76 dataStore(stream, v.has_context, ctx);
77}
void dataStore(std::ostream &stream, RestartableDataValue::StoreJSONParams &v, void *ctx)

Referenced by dataStore(), and RestartableData< T >::storeInternal().