| 22 | template <typename T> |
| 23 | void log(const T& obj) { |
| 24 | std::string result_file_path = CMAKE_SOURCE_DIR + std::string("/log/log.csv"); |
| 25 | |
| 26 | static std::ofstream FILE {result_file_path}; |
| 27 | static Logger LOGGER {FILE}; |
| 28 | LOGGER.Log(obj); |
| 29 | } |
| 30 | |
| 31 | template <typename T> |
| 32 | void show(const T& obj) { |