Ice Sheet System Model  4.18
Code documentation
DoubleInput2.h
Go to the documentation of this file.
1 #ifndef _DOUBLEINPUT2_H_
2 #define _DOUBLEINPUT2_H_
3 
4 /*Headers:*/
5 #include "./Input2.h"
6 
7 class DoubleInput2: public Input2{
8 
9  private:
10  int size;
12 
13  public:
14  /*DoubleInput2 constructors, destructors: {{{*/
15  DoubleInput2();
16  DoubleInput2(int size_in);
17  ~DoubleInput2();
18  /*}}}*/
19  /*Object virtual functions definitions:{{{ */
20  Input2 *copy();
21  void DeepEcho();
22  void Echo();
23  int Id();
24  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction);
25  int ObjectEnum();
26  /*}}}*/
27  /*DoubleInput2 management: {{{*/
28  void GetInput(IssmDouble* pvalue,int index);
29  void SetInput(int index,IssmDouble value);
30  /*}}}*/
31 
32 };
33 #endif /* _BOOLINPUT_H */
DoubleInput2::values
IssmDouble * values
Definition: DoubleInput2.h:11
DoubleInput2::copy
Input2 * copy()
Definition: DoubleInput2.cpp:34
DoubleInput2::SetInput
void SetInput(int index, IssmDouble value)
Definition: DoubleInput2.cpp:84
IssmDouble
double IssmDouble
Definition: types.h:37
DoubleInput2::Id
int Id()
Definition: DoubleInput2.cpp:54
DoubleInput2::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: DoubleInput2.cpp:56
DoubleInput2::DoubleInput2
DoubleInput2()
Definition: DoubleInput2.cpp:16
DoubleInput2
Definition: DoubleInput2.h:7
DoubleInput2::Echo
void Echo()
Definition: DoubleInput2.cpp:50
DoubleInput2::ObjectEnum
int ObjectEnum()
Definition: DoubleInput2.cpp:68
Input2.h
abstract class for Input2 object
Input2
Definition: Input2.h:18
DoubleInput2::GetInput
void GetInput(IssmDouble *pvalue, int index)
Definition: DoubleInput2.cpp:76
DoubleInput2::DeepEcho
void DeepEcho()
Definition: DoubleInput2.cpp:42
DoubleInput2::size
int size
Definition: DoubleInput2.h:10
DoubleInput2::~DoubleInput2
~DoubleInput2()
Definition: DoubleInput2.cpp:28