Skip to content

Commit

Permalink
Mark overriden functions as such in hydroLevelsData (#2389)
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes authored Sep 11, 2024
1 parent 3344d60 commit bc4cc13
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class hydroLevelsData final: public dataInterface
/*!
** \brief Reset data from the study
*/
bool reset(const Study& study);
bool reset(const Study& study) override;

/*!
** \brief Export the data into a mere INI file
Expand All @@ -68,9 +68,9 @@ class hydroLevelsData final: public dataInterface
void setTSnumber(uint index, uint year, double value);
//@}

uint width() const;
uint width() const override;

uint height() const;
uint height() const override;

double get_value(uint x, uint y) const;

Expand Down

0 comments on commit bc4cc13

Please sign in to comment.