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/BoolParam.cpp

    r20635 r20827  
    3232
    3333/*Object virtual functions definitions:*/
    34 void BoolParam::Echo(void){/*{{{*/
    35         this->DeepEcho();
     34Param* BoolParam::copy() {/*{{{*/
     35
     36        return new BoolParam(this->enum_type,this->value);
     37
    3638}
    3739/*}}}*/
     
    4042}
    4143/*}}}*/
    42 int    BoolParam::Id(void){ return -1; }/*{{{*/
    43 /*}}}*/
    44 int BoolParam::ObjectEnum(void){/*{{{*/
    45 
    46         return BoolParamEnum;
    47 
     44void BoolParam::Echo(void){/*{{{*/
     45        this->DeepEcho();
    4846}
    4947/*}}}*/
    50 Param* BoolParam::copy() {/*{{{*/
    51 
    52         return new BoolParam(this->enum_type,this->value);
    53 
    54 }
     48int    BoolParam::Id(void){ return -1; }/*{{{*/
    5549/*}}}*/
    5650void BoolParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
     
    6357}
    6458/*}}}*/
     59int BoolParam::ObjectEnum(void){/*{{{*/
     60
     61        return BoolParamEnum;
     62
     63}
     64/*}}}*/
    6565               
Note: See TracChangeset for help on using the changeset viewer.