| 4 | #include <iostream> |
| 5 | |
| 6 | struct BinaryDumper { |
| 7 | // Save T array to binary file |
| 8 | template <typename T> |
| 9 | static bool save(const std::string& filename, const T* data, size_t count); |
| 10 | |
| 11 | // Load T array from binary file |
| 12 | template <typename T> |
| 13 | static std::vector<T> load(const std::string& filename); |
| 14 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected