diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-23 15:35:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-23 15:35:24 +0100 |
| commit | 6c37cc1979b2a01205a888c4c98f3334685ee8dd (patch) | |
| tree | 9de52a3053e57bdf79a7986319cb097b33e46b5c /src/gamma_transfer_function.h | |
| parent | b75d977a38f039fd68ed5d4055ae70b4bf631603 (diff) | |
Tidying.
Diffstat (limited to 'src/gamma_transfer_function.h')
| -rw-r--r-- | src/gamma_transfer_function.h | 13 |
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; }; + } |
