blob: b5db1bf62b8ca1b7caaf43f0476ee755c5a358d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SLICER_TEST_HELPERS_H
#define SLICER_TEST_HELPERS_H
#include <filesystem>
#include <string>
#include <visibility.h>
// These are just thin wrappers that throw exceptions
DLL_PUBLIC
void diff(const std::filesystem::path & left, const std::filesystem::path & right);
#endif
|