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/FileParam.h

    r20690 r20827  
    3131                /*}}}*/
    3232                /*Object virtual functions definitions:{{{ */
     33                Param* copy();
     34                void  DeepEcho();
    3335                void  Echo();
    34                 void  DeepEcho();
    3536                int   Id();
     37                void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction);
    3638                int   ObjectEnum();
    37                 Param* copy();
    38                 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction);
    3939                /*}}}*/
    4040                /*Param vritual function definitions: {{{*/
    41                 int   InstanceEnum(){return enum_type;}
    4241                void  GetParameterValue(bool* pbool){  _error_("Param "<< EnumToStringx(enum_type) << " cannot return a bool");}
    4342                void  GetParameterValue(int* pinteger){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
     
    5554                void  GetParameterValue(FILE** pfid){*pfid=value;};
    5655                void  GetParameterValue(DataSet** pdataset){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a DataSet");}
     56                int   InstanceEnum(){return enum_type;}
    5757
     58                void  SetEnum(int enum_in){this->enum_type = enum_in;};
    5859                void  SetValue(bool boolean){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
    5960                void  SetValue(int integer){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
     
    6970                void  SetValue(FILE* fid){_error_("File param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold a FILE");}
    7071                void  SetValue(IssmDouble** array, int M, int* mdim_array, int* ndim_array){_error_("File param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold an array of matrices");}
    71                 void  SetEnum(int enum_in){this->enum_type = enum_in;};
    7272                /*}}}*/
    7373};
Note: See TracChangeset for help on using the changeset viewer.