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