Ice Sheet System Model  4.18
Code documentation
BoolInput2.cpp
Go to the documentation of this file.
1 
5 #ifdef HAVE_CONFIG_H
6  #include <config.h>
7 #else
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9 #endif
10 
11 #include "../classes.h"
12 #include "./BoolInput2.h"
13 #include "../../shared/shared.h"
14 
15 /*BoolInput2 constructors and destructor*/
17  this->size = -1;
18  this->values = NULL;
19 }
20 /*}}}*/
21 BoolInput2::BoolInput2(int size_in){/*{{{*/
22  _assert_(size_in>0);
23  _assert_(size_in<1e11);
24  this->size = size_in;
25  this->values = xNew<bool>(size_in);
26 }
27 /*}}}*/
29  xDelete<bool>(this->values);
30 }
31 /*}}}*/
32 
33 /*Object virtual functions definitions:*/
35 
36  _assert_(this->size);
37  BoolInput2* output = new BoolInput2(this->size);
38  xMemCpy<bool>(output->values,this->values,this->size);
39 
40  return output;
41 
42 }
43 /*}}}*/
44 void BoolInput2::DeepEcho(void){/*{{{*/
45 
46  _printf_("BoolInput2 Echo:\n");
47  _printf_(" Size: "<<size<<"\n");
48  printarray(this->values,this->size);
49 }
50 /*}}}*/
51 void BoolInput2::Echo(void){/*{{{*/
52  this->DeepEcho();
53 }
54 /*}}}*/
55 int BoolInput2::Id(void){ return -1; }/*{{{*/
56 /*}}}*/
57 void BoolInput2::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
58 
60  MARSHALLING(this->size);
61  if(this->size > 0){
62  MARSHALLING_DYNAMIC(this->values,bool,this->size)
63  }
64  else this->values = NULL;
65 
66 }
67 /*}}}*/
68 int BoolInput2::ObjectEnum(void){/*{{{*/
69 
70  return BoolInput2Enum;
71 
72 }
73 /*}}}*/
74 
75 /*BoolInput2 management*/
76 void BoolInput2::GetInput(bool* pvalue,int index){/*{{{*/
77 
78  _assert_(index>=0);
79  _assert_(index<this->size);
80 
81  *pvalue = this->values[index];
82 }
83 /*}}}*/
84 void BoolInput2::SetInput(int index,bool value){/*{{{*/
85 
86  _assert_(index>=0);
87  _assert_(index<this->size);
88 
89  this->values[index] = value;
90 }
91 /*}}}*/
92 
93 /*Object functions*/
BoolInput2::BoolInput2
BoolInput2()
Definition: BoolInput2.cpp:16
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
BoolInput2::values
bool * values
Definition: BoolInput2.h:11
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
BoolInput2::SetInput
void SetInput(int index, bool value)
Definition: BoolInput2.cpp:84
BoolInput2
Definition: BoolInput2.h:7
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
BoolInput2::Echo
void Echo()
Definition: BoolInput2.cpp:51
Input2
Definition: Input2.h:18
BoolInput2::copy
Input2 * copy()
Definition: BoolInput2.cpp:34
BoolInput2::size
int size
Definition: BoolInput2.h:10
BoolInput2::DeepEcho
void DeepEcho()
Definition: BoolInput2.cpp:44
printarray
void printarray(IssmPDouble *array, int lines, int cols=1)
Definition: PrintArrays.cpp:6
BoolInput2::~BoolInput2
~BoolInput2()
Definition: BoolInput2.cpp:28
BoolInput2Enum
@ BoolInput2Enum
Definition: EnumDefinitions.h:995
BoolInput2::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: BoolInput2.cpp:57
BoolInput2.h
BoolInput2::Id
int Id()
Definition: BoolInput2.cpp:55
BoolInput2::ObjectEnum
int ObjectEnum()
Definition: BoolInput2.cpp:68
BoolInput2::GetInput
void GetInput(bool *pvalue, int index)
Definition: BoolInput2.cpp:76