GENIE
interface.h
Go to the documentation of this file.
1 #ifndef GENIE_TABLE_INTERFACE_H_
2 #define GENIE_TABLE_INTERFACE_H_
3 
4 #include <memory>
7 
8 namespace genie {
9 namespace table {
10 
11 std::shared_ptr<genie::table::inv_table> BuildTable(const TableData& table_data);
12 
13 }
14 }
15 
16 #endif
This is the top-level namespace of the project.
std::vector< std::vector< int > > TableData
Raw table data format used for building the table.
Definition: types.h:12
define class inv_table
std::shared_ptr< genie::table::inv_table > BuildTable(const TableData &table_data)
Definition: interface.cc:8