#ifndef TABLE
#define TABLE

/* Table.h contains the declarations for  type Table.
 * ...
 ******************************************************/

#include <string>
#include <vector>

typedef vector<double> TableRow;
typedef vector<TableRow> Table;

void Print(ostream & out, const Table & aTable);

void Fill(const string & fileName, Table & aTable);

void Load(const string & fileName, Table & aTable);

#endif

