diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-16 10:40:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-16 10:40:12 +0100 |
| commit | bb949ec65adf95f4a2c7dd5ee7e97b9daaaf3d3f (patch) | |
| tree | 09153b297f7cebd3f13ab58188982366185298f6 /src/lib/decoder.h | |
| parent | 39d51cddeeea82e602ab1925430b0dfb5752ac79 (diff) | |
C++11 tidying.
Diffstat (limited to 'src/lib/decoder.h')
| -rw-r--r-- | src/lib/decoder.h | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h index da5be4af6..a672e8a10 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,39 +18,47 @@ */ + /** @file src/decoder.h * @brief Decoder class. */ + #ifndef DCPOMATIC_DECODER_H #define DCPOMATIC_DECODER_H -#include "types.h" + +#include "dcpomatic_time.h" #include "film.h" #include "font_data.h" -#include "dcpomatic_time.h" +#include "types.h" #include "weak_film.h" #include <boost/utility.hpp> -class Decoded; -class VideoDecoder; -class AudioDecoder; -class TextDecoder; + class AtmosDecoder; +class AudioDecoder; +class Decoded; class DecoderPart; +class TextDecoder; +class VideoDecoder; + /** @class Decoder. * @brief Parent class for decoders of content. */ -class Decoder : public boost::noncopyable, public WeakConstFilm +class Decoder : public WeakConstFilm { public: Decoder (std::weak_ptr<const Film> film); virtual ~Decoder () {} + Decoder (Decoder const&) = delete; + Decoder& operator= (Decoder const&) = delete; + std::shared_ptr<VideoDecoder> video; std::shared_ptr<AudioDecoder> audio; - std::list<std::shared_ptr<TextDecoder> > text; + std::list<std::shared_ptr<TextDecoder>> text; std::shared_ptr<AtmosDecoder> atmos; std::shared_ptr<TextDecoder> only_text () const; @@ -64,8 +72,9 @@ public: virtual dcpomatic::ContentTime position () const; virtual std::vector<dcpomatic::FontData> fonts () const { - return std::vector<dcpomatic::FontData>(); + return {}; } }; + #endif |
