diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-09 23:18:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-09 23:18:28 +0200 |
| commit | 62f9fadc0424dfab6debcc342a210b33c5e189e6 (patch) | |
| tree | ff7bc3887aca67dc96288d036d2b4af00cb5ad34 /test/test.h | |
| parent | 86b9f0a6d698d6a49110a5bd0387439461a35fab (diff) | |
Move make_simple() into test.{cc,h}
Diffstat (limited to 'test/test.h')
| -rw-r--r-- | test/test.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test.h b/test/test.h index db33067c..4d53d49f 100644 --- a/test/test.h +++ b/test/test.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -23,12 +23,17 @@ namespace xmlpp { class Element; } +namespace dcp { + class DCP; +} + extern boost::filesystem::path private_test; extern boost::filesystem::path xsd_test; extern void check_xml (xmlpp::Element* ref, xmlpp::Element* test, std::list<std::string> ignore); extern void check_xml (std::string ref, std::string test, std::list<std::string> ignore); extern void check_file (boost::filesystem::path ref, boost::filesystem::path check); +extern boost::shared_ptr<dcp::DCP> make_simple (boost::filesystem::path path); /** Creating an object of this class will make asdcplib's random number generation * (more) predictable. |
