Ignore:
Timestamp:
06/28/16 15:51:32 (9 years ago)
Author:
agscott1
Message:

CHG: Alphabetized all function names under classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Params/DoubleParam.cpp

    r20635 r20827  
    2929
    3030/*Object virtual functions definitions:*/
    31 void DoubleParam::Echo(void){/*{{{*/
    32         this->DeepEcho();
     31Param* DoubleParam::copy() {/*{{{*/
     32
     33        return new DoubleParam(this->enum_type,this->value);
     34
    3335}
    3436/*}}}*/
     
    3840}
    3941/*}}}*/
    40 int  DoubleParam::Id(void){ return -1; }/*{{{*/
    41 /*}}}*/
    42 int  DoubleParam::ObjectEnum(void){/*{{{*/
    43 
    44         return DoubleParamEnum;
    45 
     42void DoubleParam::Echo(void){/*{{{*/
     43        this->DeepEcho();
    4644}
    4745/*}}}*/
    48 Param* DoubleParam::copy() {/*{{{*/
    49 
    50         return new DoubleParam(this->enum_type,this->value);
    51 
    52 }
     46int  DoubleParam::Id(void){ return -1; }/*{{{*/
    5347/*}}}*/
    5448void DoubleParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
     
    5852        MARSHALLING(enum_type);
    5953        MARSHALLING(value);
     54
     55}
     56/*}}}*/
     57int  DoubleParam::ObjectEnum(void){/*{{{*/
     58
     59        return DoubleParamEnum;
    6060
    6161}
Note: See TracChangeset for help on using the changeset viewer.