You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
332 B
C++
15 lines
332 B
C++
#ifndef BOILERPLATE_HH
|
|
#define BOILERPLATE_HH
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
using InputArrays = std::vector<std::vector<std::string>>;
|
|
|
|
InputArrays readFile(std::string, char);
|
|
std::vector<std::string> readFile(std::string);
|
|
std::vector<std::string> ssplit(std::string, char);
|
|
|
|
#endif |