Ignore:
Timestamp:
Nov 9, 2000, 4:39:42 PM (25 years ago)
Author:
ansari
Message:

MAJ Makefile , Reza 9/11/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitsfile.cc

    r1300 r1311  
    16441644  for(it = dvl.Begin(); it != dvl.End(); it++)
    16451645    {
    1646       char keytype= (*it).second.elval.typ;
     1646      MuTyV::MTVType keytype= (*it).second.elval.Type();
    16471647      char keyname[10];
    16481648      strncpy(keyname,(*it).first.substr(0,64).c_str(),10);
     
    16611661          switch (keytype)
    16621662            {
    1663             case 'I' :
     1663            case MuTyV::MTVInteger :
    16641664              {
    16651665                int ival = (int)dvl.GetI(key);
     
    16671667                break;
    16681668              }
    1669             case 'D' :
     1669            case MuTyV::MTVFloat :
    16701670              {
    16711671                double dval= (double)dvl.GetD(key);
     
    16731673                break;
    16741674              }
    1675             case 'S' :
     1675            case MuTyV::MTVString :
    16761676              {
    16771677                char strvaleur[FLEN_VALUE]= "";
Note: See TracChangeset for help on using the changeset viewer.