blob: 385ee64f89f3c5481bddd9eba0918ee5df8c9d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SLICER_TEST_HELPERS_H
#define SLICER_TEST_HELPERS_H
#include <string>
#include <boost/filesystem/path.hpp>
// These are just thin wrappers that throw exceptions
void
system(const std::string &);
void *
loadlib(const boost::filesystem::path &);
void
closelib(void *);
void
diff(const boost::filesystem::path & left, const boost::filesystem::path & right);
#endif
|