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

    r20690 r20827  
    3232                /*}}}*/
    3333                /*Object virtual functions definitions:{{{ */
     34                Param* copy();
     35                void  DeepEcho();
    3436                void  Echo();
    35                 void  DeepEcho();
    3637                int   Id();
     38                void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction);
    3739                int   ObjectEnum();
    38                 Param* copy();
    39                 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction);
    4040                /*}}}*/
    4141                /*Param vritual function definitions: {{{*/
    42                 int   InstanceEnum(){return enum_type;}
    4342                void  GetParameterValue(bool* pbool){  _error_("Param "<< EnumToStringx(enum_type) << " cannot return a bool");}
    4443                void  GetParameterValue(int* pinteger){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
     
    5655                void  GetParameterValue(Matrix<IssmDouble>** pmat){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a Mat");}
    5756                void  GetParameterValue(DataSet** pdataset);
     57                int   InstanceEnum(){return enum_type;}
    5858
     59                void  SetEnum(int enum_in){this->enum_type = enum_in;};
    5960                void  SetValue(bool boolean){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
    6061                void  SetValue(int integer){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
     
    7172                void  SetValue(DataSet* dataset){_error_("DataSet param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold a DataSet yet");}
    7273                void  SetValue(IssmDouble** array, int M, int* mdim_array, int* ndim_array){_error_("DataSet param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold an array of matrices");}
    73                 void  SetEnum(int enum_in){this->enum_type = enum_in;};
    7474                /*}}}*/
    7575};
Note: See TracChangeset for help on using the changeset viewer.