GENIE
serialization.h
Go to the documentation of this file.
1 #ifndef GENIE_SERIALIZATION_H_
2 #define GENIE_SERIALIZATION_H_
3 
4 #include <memory>
5 #include <string>
6 
7 namespace genie
8 {
9 namespace utility
10 {
11 
12 void
13 SaveTable(const std::string &filename, const std::shared_ptr<const genie::table::inv_table> &table);
14 
15 std::shared_ptr<genie::table::inv_table>
16 LoadTable(const std::string &filename);
17 
18 } // namespace utility
19 } // namesapce genie
20 
21 #endif
This is the top-level namespace of the project.
std::shared_ptr< genie::table::inv_table > LoadTable(const std::string &filename)
void SaveTable(const std::string &filename, const std::shared_ptr< const genie::table::inv_table > &table)