diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-29 10:36:56 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-29 10:37:47 +0100 |
| commit | 5e4c87ae58f1ed73b9ef19cd75210963599fa546 (patch) | |
| tree | cb32d184e84633d8b6e3d077fa2a80a4a259ce19 /src/transfer_function.h | |
| parent | cfce3d57883e8d6ceeb869fd208230fbfbbd98d9 (diff) | |
Some comments.
Diffstat (limited to 'src/transfer_function.h')
| -rw-r--r-- | src/transfer_function.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/transfer_function.h b/src/transfer_function.h index 7f7187b5..c8248cce 100644 --- a/src/transfer_function.h +++ b/src/transfer_function.h @@ -17,6 +17,10 @@ */ +/** @file src/transfer_function.h + * @brief TransferFunction class. + */ + #ifndef LIBDCP_TRANSFER_FUNCTION_H #define LIBDCP_TRANSFER_FUNCTION_H @@ -27,6 +31,9 @@ namespace dcp { +/** @class TransferFunction + * @brief A transfer function represented by a lookup table. + */ class TransferFunction : public boost::noncopyable { public: @@ -38,6 +45,7 @@ public: virtual bool about_equal (boost::shared_ptr<const TransferFunction> other, double epsilon) const = 0; protected: + /** Make a LUT and return an array allocated by new */ virtual double * make_lut (int bit_depth, bool inverse) const = 0; private: |
