Tidying.
[libdcp.git] / src / bitstream.h
index 1295f79e015ccbf8bea4806295f9c277b371553c..2dc7c20ef3097706a1a78f8a3ee154fb224493ce 100644 (file)
@@ -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.
 
 */
 
 
+/** @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;
 };
 
+
 }