CoastalME (Coastal Modelling Environment)
Simulates the long-term behaviour of complex coastlines
Loading...
Searching...
No Matches
drift.h
Go to the documentation of this file.
1
12
13#ifndef DRIFT_H
14#define DRIFT_H
15/* ===============================================================================================================================
16 This file is part of CoastalME, the Coastal Modelling Environment.
17
18 CoastalME is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23===============================================================================================================================*/
24#include "coast.h"
25#include "coast_landform.h"
26
28{
29 private:
31 double m_dD50;
32
33 protected:
34 public:
35 CRWDrift(CRWCoast*, int const, int const, int const);
36 ~CRWDrift(void) override;
37
38 void Display(void) override;
39};
40#endif // DRIFT_H
CACoastLandform(void)
Constructor with initialisation list.
Real-world class used to represent coastline objects.
Definition coast.h:39
CRWDrift(CRWCoast *, int const, int const, int const)
Constructor with four parameters and an intialization list.
Definition drift.cpp:27
double m_dD50
The drift's d50.
Definition drift.h:31
void Display(void) override
Instantiates the pure virtual function in the abstract parent class, so that CRWDrift is not an abstr...
Definition drift.cpp:43
~CRWDrift(void) override
Destructor.
Definition drift.cpp:38
Contains CRWCoast definitions.
Contains CACoastLandform definitions.