Main.cc: In function ‘int main()’:
Main.cc:22:5: error: ‘FileIO’ was not declared in this scope; did you mean ‘fileno’?
22 | FileIO();
| ^~~~~~
| fileno
Main.cc:33:28: error: variable ‘std::stringstream ss’ has initializer but incomplete type
33 | stringstream ss(str);
| ^
Main.cc:43:32: error: variable ‘std::stringstream ss’ has initializer but incomplete type
43 | stringstream ss(str);
| ^
Main.cc:54:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
54 | for (int i = 0; i < pi.size(); i++){
| ~~^~~~~~~~~~~