summaryrefslogtreecommitdiff
path: root/slicer/test/helpers.h
blob: f8f7a7dc10a7c63754ae76252834ca6e2529a90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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 *);

#endif