[moulette] switched to boost::signals2
[ozulis.git] / src / moulette / test-factory.hh
blobc65e329465fb9a7fd7a41335f6dcf16cda143a19
1 #ifndef MOULETTE_TEST_FACTORY_HH
2 # define MOULETTE_TEST_FACTORY_HH
4 # include <boost/filesystem/path.hpp>
6 namespace moulette
8 class Testable;
10 class TestFactory
12 public:
13 static Testable * loadTest(const boost::filesystem::path & path);
14 static Testable * create(const std::string & type);
18 #endif /* !MOULETTE_TEST_FACTORY_HH */