13 lines
330 B
C++
13 lines
330 B
C++
#ifndef INC_08_TEAM_PROJECT_UTILS_H
|
|
#define INC_08_TEAM_PROJECT_UTILS_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
using std::vector, std::string;
|
|
|
|
void printRow(const vector<int> &widths, const vector<string>& row);
|
|
|
|
void printTable(const vector<int>& widths, const vector<vector<string>>& data);
|
|
|
|
#endif //INC_08_TEAM_PROJECT_UTILS_H
|