Util.h 219 B

123456789101112131415
  1. #pragma once
  2. #ifndef MANDELVID_UTIL_H
  3. #define MANDELVID_UTIL_H
  4. #include <vector>
  5. #include <string>
  6. using Table = std::vector<std::vector<std::string>>;
  7. void printTable(const Table& t);
  8. #endif // MANDELVID_UTIL_H