Ignore:
Timestamp:
08/02/16 17:06:46 (9 years ago)
Author:
agscott1
Message:

CHG: Replaced Enums with Strings in matlab and python. Updated corresponding cpp code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/io/Marshalling/IoCodeConversions.cpp

    r20993 r21049  
    119119
    120120}/*}}}*/
     121
     122int IoRiftfillToEnum(int enum_in){/*{{{*/
     123        switch(enum_in){
     124                case 0: return AirEnum;
     125                case 1: return IceEnum;
     126                case 2: return MelangeEnum;
     127                case 3: return WaterEnum;
     128                default: _error_("Marshalled Riftfill enum \""<<enum_in<<"\" not supported yet.");
     129        }
     130}/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.