summaryrefslogtreecommitdiff
path: root/src/subtitle_image.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-24 22:56:33 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-24 22:56:33 +0100
commite1e7de8d73bedd0c741e7df0390068c67867e09f (patch)
tree02f007aad80f4d99707f2507a81b0685865026d0 /src/subtitle_image.h
parentceaf7bc52712cb60708ed5eb5c62c5e463dd8e89 (diff)
Tidying.
Diffstat (limited to 'src/subtitle_image.h')
-rw-r--r--src/subtitle_image.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/subtitle_image.h b/src/subtitle_image.h
index 2cdfea25..595320f7 100644
--- a/src/subtitle_image.h
+++ b/src/subtitle_image.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -31,10 +31,12 @@
files in the program, then also delete it here.
*/
+
/** @file src/subtitle_image.h
- * @brief SubtitleImage class.
+ * @brief SubtitleImage class
*/
+
#ifndef LIBDCP_SUBTITLE_IMAGE_H
#define LIBDCP_SUBTITLE_IMAGE_H
@@ -46,10 +48,12 @@
#include <boost/optional.hpp>
#include <string>
+
namespace dcp {
+
/** @class SubtitleImage
- * @brief A bitmap subtitle with all the associated attributes.
+ * @brief A bitmap subtitle with all the associated attributes
*/
class SubtitleImage : public Subtitle
{
@@ -107,10 +111,13 @@ private:
mutable boost::optional<boost::filesystem::path> _file;
};
+
bool operator== (SubtitleImage const & a, SubtitleImage const & b);
bool operator!= (SubtitleImage const & a, SubtitleImage const & b);
std::ostream& operator<< (std::ostream& s, SubtitleImage const & sub);
+
}
+
#endif