summaryrefslogtreecommitdiff
path: root/src/bitstream.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-24 04:15:26 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-24 04:15:26 +0100
commitceaf7bc52712cb60708ed5eb5c62c5e463dd8e89 (patch)
treec55e4b85ee30138ce83263045d77d01631378b2e /src/bitstream.h
parent6c37cc1979b2a01205a888c4c98f3334685ee8dd (diff)
Tidying.
Diffstat (limited to 'src/bitstream.h')
-rw-r--r--src/bitstream.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/bitstream.h b/src/bitstream.h
index 1295f79e..2dc7c20e 100644
--- a/src/bitstream.h
+++ b/src/bitstream.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -32,6 +32,11 @@
*/
+/** @file src/bitstream.h
+ * @brief Bitstream class
+ */
+
+
#include <boost/crc.hpp>
#include <boost/optional.hpp>
#include <stdint.h>
@@ -40,6 +45,7 @@
namespace dcp {
+
class Bitstream
{
public:
@@ -58,4 +64,5 @@ private:
boost::optional<boost::crc_basic<16> > _crc;
};
+
}