-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOperator.h
49 lines (39 loc) · 1008 Bytes
/
Operator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* @file Operator.h
* @brief Defines the data and methods of the abstract Operator class
*
* @license This file is distributed under the BSD Open Source License.
* See LICENSE.TXT for details.
**/
#ifndef OPERATOR_H
#define OPERATOR_H
#include "Cloud.h"
class Operator {
public:
Cloud * const cloud; //<! The dust cloud for the simulation
/**
* @brief Constructor for the Operator class
**/
Operator(Cloud * const C) : cloud(C) {}
/**
* @brief Destructor for the Operator class
**/
virtual ~Operator() {}
/**
* @brief The first Operator operation
**/
virtual void operation1(const double currentTime)=0;
/**
* @brief The second Operator operation
**/
virtual void operation2(const double currentTime)=0;
/**
* @brief The third Operator operation
**/
virtual void operation3(const double currentTime)=0;
/**
* @brief The fourth Operator operation
**/
virtual void operation4(const double currentTime)=0;
};
#endif // OPERATOR_H