diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-26 22:25:11 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-26 22:25:11 +0000 |
| commit | 93096af59d8235235c0caed929b6f72dcf09cdc9 (patch) | |
| tree | 379519075366d74a16b6912d6bc02fef05ce3700 /src/mono_picture_frame.h | |
| parent | 59886567974bd3e79d30a4a9425d86d50bf425f3 (diff) | |
A little tidying up.
Diffstat (limited to 'src/mono_picture_frame.h')
| -rw-r--r-- | src/mono_picture_frame.h | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/mono_picture_frame.h b/src/mono_picture_frame.h index 44df68c9..cc6096cd 100644 --- a/src/mono_picture_frame.h +++ b/src/mono_picture_frame.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,10 +17,16 @@ */ +/** @file src/mono_picture_frame.h + * @brief MonoPictureFrame class. + */ + +#include "types.h" +#include <boost/shared_ptr.hpp> +#include <boost/noncopyable.hpp> +#include <boost/filesystem.hpp> #include <string> #include <stdint.h> -#include <boost/shared_ptr.hpp> -#include "types.h" namespace ASDCP { namespace JP2K { @@ -33,8 +39,10 @@ namespace dcp { class ARGBFrame; -/** A single frame of a 2D (monoscopic) picture asset */ -class MonoPictureFrame +/** @class MonoPictureFrame + * @brief A single frame of a 2D (monoscopic) picture asset. + */ +class MonoPictureFrame : public boost::noncopyable { public: MonoPictureFrame (boost::filesystem::path mxf_path, int n, ASDCP::AESDecContext *); |
