Missing finalize() in dcpdecryptmxf.
[libdcp.git] / src / identity_transfer_function.h
index f2313c104074de50ab066f5b2656ffbebe64edbe..de7a897a102f27e78fddd56f7ac62d9e29b9055a 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
     files in the program, then also delete it here.
 */
 
+
 /** @file  src/identity_transfer_function.h
- *  @brief IdentityTransferFunction class.
+ *  @brief IdentityTransferFunction class
  */
 
+
 #include "transfer_function.h"
 
+
 namespace dcp {
 
+
 class IdentityTransferFunction : public TransferFunction
 {
 public:
-       bool about_equal (std::shared_ptr<const TransferFunction> other, double epsilon) const;
+       bool about_equal (std::shared_ptr<const TransferFunction> other, double epsilon) const override;
 
 protected:
-       double * make_lut (int bit_depth, bool inverse) const;
+       double * make_lut (int bit_depth, bool inverse) const override;
 };
 
+
 }