Changeset 16656
- Timestamp:
- 11/07/13 09:52:13 (11 years ago)
- Location:
- issm/trunk-jpl/src/c/classes/Inputs
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Inputs/BoolInput.cpp
r16653 r16656 40 40 void BoolInput::DeepEcho(void){ 41 41 42 _printf_( " BoolInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<(value?"true":"false") << "\n");42 _printf_(setw(15)<<" BoolInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<(value?"true":"false") << "\n"); 43 43 } 44 44 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Inputs/ControlInput.cpp
r16653 r16656 68 68 69 69 _printf_("ControlInput:\n"); 70 _printf_( " ControlInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<"\n");70 _printf_(setw(15)<<" ControlInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<"\n"); 71 71 _printf_("---values: \n"); if (values) values->Echo(); 72 72 _printf_("---savedvalues: \n");if (savedvalues) savedvalues->Echo(); -
issm/trunk-jpl/src/c/classes/Inputs/DoubleInput.cpp
r16653 r16656 40 40 void DoubleInput::DeepEcho(void){ 41 41 42 _printf_( " DoubleInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<this->value<<"\n");42 _printf_(setw(15)<<" DoubleInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<this->value<<"\n"); 43 43 } 44 44 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Inputs/IntInput.cpp
r16653 r16656 35 35 void IntInput::DeepEcho(void){ 36 36 37 _printf_( " IntInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<this->value<<"\n");37 _printf_(setw(15)<<" IntInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<this->value<<"\n"); 38 38 } 39 39 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Inputs/PentaInput.cpp
r16653 r16656 50 50 void PentaInput::DeepEcho(void){ 51 51 52 _printf_( " PentaInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" [");52 _printf_(setw(15)<<" PentaInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" ["); 53 53 for(int i=0;i<this->NumberofNodes();i++) _printf_(" "<<this->values[i]); 54 54 _printf_("]\n"); -
issm/trunk-jpl/src/c/classes/Inputs/SegInput.cpp
r16653 r16656 50 50 void SegInput::DeepEcho(void){ 51 51 52 _printf_( " SegInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" [");52 _printf_(setw(15)<<" SegInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" ["); 53 53 for(int i=0;i<this->NumberofNodes();i++) _printf_(" "<<this->values[i]); 54 54 _printf_("]\n"); -
issm/trunk-jpl/src/c/classes/Inputs/TriaInput.cpp
r16653 r16656 50 50 void TriaInput::DeepEcho(void){ 51 51 52 _printf_( " TriaInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" [");52 _printf_(setw(15)<<" TriaInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" ["); 53 53 for(int i=0;i<this->NumberofNodes();i++) _printf_(" "<<this->values[i]); 54 54 _printf_("]\n");
Note:
See TracChangeset
for help on using the changeset viewer.