Cleanup: fix more comments/guards (and add check script).
[libdcp.git] / src / bitstream.h
index 1295f79e015ccbf8bea4806295f9c277b371553c..1afad17c8c55f752e2462492d51172a9e987212f 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:
@@ -55,7 +61,8 @@ public:
 
 private:
        std::vector<bool> _data;
-       boost::optional<boost::crc_basic<16> > _crc;
+       boost::optional<boost::crc_basic<16>> _crc;
 };
 
+
 }