Go to the source code of this file.
◆ dataLoad() [1/2]
      
        
          | void dataLoad | ( | std::istream & | stream, | 
        
          |  |  | Backup & | backup, | 
        
          |  |  | void * | context | 
        
          |  | ) |  |  | 
      
 
Definition at line 25 of file Backup.C.
Referenced by dataLoad().
   27   mooseAssert(backup.
header, 
"Not set");
    28   mooseAssert(backup.
data, 
"Not set");
 std::unique_ptr< std::stringstream > data
void dataLoad(std::istream &stream, Backup &backup, void *context)
std::unique_ptr< std::stringstream > header
 
 
◆ dataLoad() [2/2]
      
        
          | void dataLoad | ( | std::istream & | stream, | 
        
          |  |  | std::unique_ptr< Backup > & | backup, | 
        
          |  |  | void * | context | 
        
          |  | ) |  |  | 
      
 
Definition at line 44 of file Backup.C.
   47   dataLoad(stream, has_value, 
nullptr);
    50     backup = std::make_unique<Backup>();
 void dataLoad(std::istream &stream, Backup &backup, void *context)
 
 
◆ dataStore() [1/2]
      
        
          | void dataStore | ( | std::ostream & | stream, | 
        
          |  |  | Backup & | backup, | 
        
          |  |  | void * | context | 
        
          |  | ) |  |  | 
      
 
Definition at line 15 of file Backup.C.
Referenced by dataStore().
   17   mooseAssert(backup.
header, 
"Not set");
    18   mooseAssert(backup.
data, 
"Not set");
 void dataStore(std::ostream &stream, Backup &backup, void *context)
std::unique_ptr< std::stringstream > data
std::unique_ptr< std::stringstream > header
 
 
◆ dataStore() [2/2]
      
        
          | void dataStore | ( | std::ostream & | stream, | 
        
          |  |  | std::unique_ptr< Backup > & | backup, | 
        
          |  |  | void * | context | 
        
          |  | ) |  |  | 
      
 
Definition at line 35 of file Backup.C.
   37   bool has_value = backup != 
nullptr;
 void dataStore(std::ostream &stream, Backup &backup, void *context)