Ice Sheet System Model  4.18
Code documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IntParam.cpp
Go to the documentation of this file.
1 
5 /*header files: */
6 /*{{{*/
7 #ifdef HAVE_CONFIG_H
8  #include <config.h>
9 #else
10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11 #endif
12 
13 #include "../classes.h"
14 #include "../../shared/shared.h"
15 /*}}}*/
16 
17 /*IntParam constructors and destructor*/
19  return;
20 }
21 /*}}}*/
22 IntParam::IntParam(int in_enum_type,IssmInt in_value){/*{{{*/
23 
24  enum_type=in_enum_type;
25  value=in_value;
26 }
27 /*}}}*/
29  return;
30 }
31 /*}}}*/
32 
33 /*Object virtual functions definitions:*/
34 Param* IntParam::copy() {/*{{{*/
35 
36  return new IntParam(this->enum_type,this->value);
37 
38 }
39 /*}}}*/
40 void IntParam::DeepEcho(void){/*{{{*/
41 
42  _printf_(setw(22)<<" IntParam "<<setw(35)<<left<<EnumToStringx(this->enum_type)<<" "<<this->value<<"\n");
43 }
44 /*}}}*/
45 void IntParam::Echo(void){/*{{{*/
46  this->DeepEcho();
47 }
48 /*}}}*/
49 int IntParam::Id(void){ return -1; }/*{{{*/
50 /*}}}*/
51 void IntParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
52 
54 
57 
58 }
59 /*}}}*/
60 int IntParam::ObjectEnum(void){/*{{{*/
61 
62  return IntParamEnum;
63 
64 }
65 /*}}}*/
Param
Definition: Param.h:21
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
IntParam::value
IssmInt value
Definition: IntParam.h:25
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
IntParam::copy
Param * copy()
Definition: IntParam.cpp:34
IntParamEnum
@ IntParamEnum
Definition: EnumDefinitions.h:1128
IntParam::enum_type
int enum_type
Definition: IntParam.h:24
IntParam::Echo
void Echo()
Definition: IntParam.cpp:45
IntParam::IntParam
IntParam()
Definition: IntParam.cpp:18
IntParam::~IntParam
~IntParam()
Definition: IntParam.cpp:28
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
IntParam::ObjectEnum
int ObjectEnum()
Definition: IntParam.cpp:60
IssmInt
int IssmInt
Definition: types.h:20
IntParam::Id
int Id()
Definition: IntParam.cpp:49
IntParam::DeepEcho
void DeepEcho()
Definition: IntParam.cpp:40
IntParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntParam.cpp:51