GlassBR
All Classes Files Functions
ReadTable.hpp
Go to the documentation of this file.
1 
7 #ifndef ReadTable_h
8 #define ReadTable_h
9 
10 #include <string>
11 #include <vector>
12 
13 using std::ifstream;
14 using std::ofstream;
15 using std::string;
16 using std::vector;
17 
24 void read_table(string filename, vector<double> &z_vector, vector<vector<double>> &x_matrix, vector<vector<double>> &y_matrix);
25 
26 #endif
void read_table(string filename, vector< double > &z_vector, vector< vector< double >> &x_matrix, vector< vector< double >> &y_matrix)
Reads glass ASTM data from a file with the given file name.