diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-20 14:14:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-08 00:35:29 +0100 |
| commit | d39880eef211a296fa8ef4712cdef5945d08527c (patch) | |
| tree | 45dce8f3e1fd599ca76677e31eee2a71c9a4fbc1 /test/test.h | |
| parent | 75faebaf1d74e2b52360905e94e9f5bf31c34124 (diff) | |
std::shared_ptr
Diffstat (limited to 'test/test.h')
| -rw-r--r-- | test/test.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/test.h b/test/test.h index ea697e40..fdc3c4d7 100644 --- a/test/test.h +++ b/test/test.h @@ -42,14 +42,14 @@ extern boost::filesystem::path xsd_test; extern void check_xml (xmlpp::Element* ref, xmlpp::Element* test, std::list<std::string> ignore_tags, bool ignore_whitespace = false); 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::MonoPictureAsset> simple_picture (boost::filesystem::path path, std::string suffix); -extern boost::shared_ptr<dcp::DCP> make_simple (boost::filesystem::path path, int reels = 1); -extern boost::shared_ptr<dcp::DCP> make_simple_with_interop_subs (boost::filesystem::path path); -extern boost::shared_ptr<dcp::DCP> make_simple_with_smpte_subs (boost::filesystem::path path); -extern boost::shared_ptr<dcp::DCP> make_simple_with_interop_ccaps (boost::filesystem::path path); -extern boost::shared_ptr<dcp::DCP> make_simple_with_smpte_ccaps (boost::filesystem::path path); -extern boost::shared_ptr<dcp::OpenJPEGImage> black_image (); -extern boost::shared_ptr<dcp::ReelAsset> black_picture_asset (boost::filesystem::path dir, int frames = 24); +extern std::shared_ptr<dcp::MonoPictureAsset> simple_picture (boost::filesystem::path path, std::string suffix); +extern std::shared_ptr<dcp::DCP> make_simple (boost::filesystem::path path, int reels = 1); +extern std::shared_ptr<dcp::DCP> make_simple_with_interop_subs (boost::filesystem::path path); +extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_subs (boost::filesystem::path path); +extern std::shared_ptr<dcp::DCP> make_simple_with_interop_ccaps (boost::filesystem::path path); +extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_ccaps (boost::filesystem::path path); +extern std::shared_ptr<dcp::OpenJPEGImage> black_image (); +extern std::shared_ptr<dcp::ReelAsset> black_picture_asset (boost::filesystem::path dir, int frames = 24); /** Creating an object of this class will make asdcplib's random number generation * (more) predictable. |
