Changeset 789


Ignore:
Timestamp:
Jul 30, 2007 10:10:00 AM (17 years ago)
Author:
dkearney
Message:

adding tool.version.rappture.language to xml files to keep track of language usage

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cee/RpLibraryCInterface.cc

    r671 r789  
    297297    int retVal = 0;
    298298    // signal the processing is complete
     299    lib->put("tool.version.rappture.language", "c");
    299300    lib->result();
    300301    return retVal;
  • trunk/src/fortran/RpLibraryFInterface.cc

    r597 r789  
    10341034        lib = getObject_Lib(*handle);
    10351035        if (lib) {
     1036            lib->put("tool.version.rappture.language", "fortran");
    10361037            lib->result();
    10371038        }
  • trunk/src/matlab/rpLibResult.cc

    r162 r789  
    4444        lib = getObject_Lib(libIndex);
    4545        if (lib) {
     46            lib->put("tool.version.rappture.language", "matlab");
    4647            lib->result();
    4748            err = 0;
  • trunk/src/octave/rpLibResult.cc

    r155 r789  
    4949                lib = getObject_Lib(libHandle);
    5050                if (lib) {
     51                    lib->put("tool.version.rappture.language", "octave");
    5152                    lib->result();
    5253                    // cleanLibDict();
Note: See TracChangeset for help on using the changeset viewer.