Ignore:
Timestamp:
Jul 17, 2006, 6:06:38 PM (19 years ago)
Author:
ansari
Message:

Quelques corrections/ajout ds methode NObjMgrAdapter::GetInfoString() pour TArray/TMatrix et NTuple/DataTable , Reza 17/7/2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/nomtmatvecadapter.cc

    r2999 r3033  
    8989      char buff[32];
    9090      sprintf(buff, "%ld", (long)mMtx->Size());
     91      return string(buff);
     92    }
     93    else if ((opts[0] == "nrow") || (opts[0] == "nrows")) {
     94      char buff[32];
     95      sprintf(buff, "%ld", (long)mMtx->NRows());
     96      return string(buff);
     97    }
     98    else if ((opts[0] == "ncol") || (opts[0] == "ncols")) {
     99      char buff[32];
     100      sprintf(buff, "%ld", (long)mMtx->NCols());
    91101      return string(buff);
    92102    }
Note: See TracChangeset for help on using the changeset viewer.