summaryrefslogtreecommitdiff
path: root/src/gamma_transfer_function.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamma_transfer_function.h')
-rw-r--r--src/gamma_transfer_function.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/gamma_transfer_function.h b/src/gamma_transfer_function.h
index f1a1c13b..a7bdd44d 100644
--- a/src/gamma_transfer_function.h
+++ b/src/gamma_transfer_function.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -31,16 +31,20 @@
files in the program, then also delete it here.
*/
+
/** @file src/gamma_transfer_function.h
- * @brief GammaTransferFunction class.
+ * @brief GammaTransferFunction class
*/
+
#include "transfer_function.h"
+
namespace dcp {
-/** A description of a gamma function of the f(x) = x^g where
- * g is the gamma.
+
+/** @class GammaTransferFunction
+ * @brief A description of a gamma function of the f(x) = x^g where g is the gamma
*/
class GammaTransferFunction : public TransferFunction
{
@@ -60,4 +64,5 @@ private:
double _gamma;
};
+
}