diff options
Diffstat (limited to 'os2eindopdracht/Arguments.h')
-rw-r--r-- | os2eindopdracht/Arguments.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os2eindopdracht/Arguments.h b/os2eindopdracht/Arguments.h index c61d3a9..c5c9cd5 100644 --- a/os2eindopdracht/Arguments.h +++ b/os2eindopdracht/Arguments.h @@ -4,6 +4,7 @@ using std::string; +/** @brief wrapper for magic numbers */ struct Coefficients { double b0; double b1; @@ -14,6 +15,7 @@ struct Coefficients { class Arguments { public: + /** @brief parse arguments using getopt */ Arguments(int argc, char** argv); public: @@ -24,6 +26,7 @@ public: Coefficients treble; private: + /** @brief calculate magic coefficients using bass and treble gain value */ void calculate_coefficients(); private: |