Changeset 1085 for trunk/lang/matlab
- Timestamp:
- Aug 3, 2008 11:08:42 PM (14 years ago)
- Location:
- trunk/lang/matlab
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lang/matlab/rpLib.cc
r962 r1085 43 43 if (lib) { 44 44 // store the library and return a dictionary key 45 libIndex = storeObject_ Lib(lib);45 libIndex = storeObject_Void((void*)lib); 46 46 if (libIndex) { 47 47 err = 0; -
trunk/lang/matlab/rpLibChildren.cc
r162 r1085 57 57 (childIndex >= 0) ) { 58 58 59 lib = getObject_Lib(libIndex);59 lib = (RpLibrary*) getObject_Void(libIndex); 60 60 61 61 if (childIndex > 0) { 62 child = getObject_Lib(childIndex);62 child = (RpLibrary*) getObject_Void(childIndex); 63 63 } 64 64 65 65 if (lib) { 66 66 retLib = lib->children(path,child); 67 retLibIndex = storeObject_ Lib(retLib);67 retLibIndex = storeObject_Void((void*)retLib); 68 68 if (retLibIndex) { 69 69 err = 0; -
trunk/lang/matlab/rpLibChildrenByType.cc
r162 r1085 56 56 /* Call the C++ subroutine. */ 57 57 if ( (libIndex > 0) && (!path.empty()) && (!type.empty()) ) { 58 lib = getObject_Lib(libIndex);58 lib = (RpLibrary*) getObject_Void(libIndex); 59 59 60 60 if (childIndex > 0) { 61 child = getObject_Lib(childIndex);61 child = (RpLibrary*) getObject_Void(childIndex); 62 62 } 63 63 64 64 if (lib) { 65 65 retLib = lib->children(path,child,type); 66 retLibIndex = storeObject_ Lib(retLib);66 retLibIndex = storeObject_Void((void*)retLib); 67 67 if (retLibIndex) { 68 68 err = 0; -
trunk/lang/matlab/rpLibElement.cc
r162 r1085 49 49 /* Call the C++ subroutine. */ 50 50 if ( (libIndex > 0) && (!path.empty()) ) { 51 lib = getObject_Lib(libIndex);51 lib = (RpLibrary*) getObject_Void(libIndex); 52 52 if (lib) { 53 53 retLib = lib->element(path); 54 retLibIndex = storeObject_ Lib(retLib);54 retLibIndex = storeObject_Void((void*)retLib); 55 55 if (retLibIndex) { 56 56 err = 0; -
trunk/lang/matlab/rpLibElementAsComp.cc
r162 r1085 49 49 /* Call the C++ subroutine. */ 50 50 if ( (libIndex > 0) && (!path.empty()) ) { 51 lib = getObject_Lib(libIndex);51 lib = (RpLibrary*) getObject_Void(libIndex); 52 52 if (lib) { 53 53 eleLib = lib->element(path); -
trunk/lang/matlab/rpLibElementAsId.cc
r162 r1085 50 50 /* Call the C subroutine. */ 51 51 if ( (libIndex > 0) && (!path.empty()) ) { 52 lib = getObject_Lib(libIndex);52 lib = (RpLibrary*) getObject_Void(libIndex); 53 53 if (lib) { 54 54 eleLib = lib->element(path); -
trunk/lang/matlab/rpLibElementAsObject.cc
r162 r1085 49 49 /* Call the C++ subroutine. */ 50 50 if ( (libIndex > 0) && (!path.empty()) ) { 51 lib = getObject_Lib(libIndex);51 lib = (RpLibrary*) getObject_Void(libIndex); 52 52 if (lib) { 53 53 retLib = lib->element(path); 54 retLibIndex = storeObject_ Lib(retLib);54 retLibIndex = storeObject_Void((void*)retLib); 55 55 if (retLibIndex) { 56 56 err = 0; -
trunk/lang/matlab/rpLibElementAsType.cc
r162 r1085 50 50 /* Call the C++ subroutine. */ 51 51 if ( (libIndex > 0) && (!path.empty()) ) { 52 lib = getObject_Lib(libIndex);52 lib = (RpLibrary*) getObject_Void(libIndex); 53 53 if (lib) { 54 54 eleLib = lib->element(path); -
trunk/lang/matlab/rpLibGet.cc
r162 r1085 48 48 /* Call the C subroutine. */ 49 49 if ( (libIndex > 0) && (!path.empty()) ) { 50 lib = getObject_Lib(libIndex);50 lib = (RpLibrary*) getObject_Void(libIndex); 51 51 52 52 if (lib) { -
trunk/lang/matlab/rpLibGetDouble.cc
r165 r1085 48 48 /* Call the C subroutine. */ 49 49 if ( (libIndex > 0) && (!path.empty()) ) { 50 lib = getObject_Lib(libIndex);50 lib = (RpLibrary*) getObject_Void(libIndex); 51 51 52 52 if (lib) { -
trunk/lang/matlab/rpLibGetString.cc
r162 r1085 48 48 /* Call the C subroutine. */ 49 49 if ( (libIndex > 0) && (!path.empty()) ) { 50 lib = getObject_Lib(libIndex);50 lib = (RpLibrary*) getObject_Void(libIndex); 51 51 52 52 if (lib) { -
trunk/lang/matlab/rpLibNodeComp.cc
r162 r1085 44 44 /* Call the C subroutine. */ 45 45 if (libIndex > 0) { 46 lib = getObject_Lib(libIndex);46 lib = (RpLibrary*) getObject_Void(libIndex); 47 47 if (lib) { 48 48 retStr = lib->nodeComp(); -
trunk/lang/matlab/rpLibNodeId.cc
r162 r1085 43 43 /* Call the C subroutine. */ 44 44 if (libIndex > 0) { 45 lib = getObject_Lib(libIndex);45 lib = (RpLibrary*) getObject_Void(libIndex); 46 46 if (lib) { 47 47 retStr = lib->nodeId(); -
trunk/lang/matlab/rpLibNodeType.cc
r162 r1085 44 44 /* Call the C subroutine. */ 45 45 if (libIndex > 0) { 46 lib = getObject_Lib(libIndex);46 lib = (RpLibrary*) getObject_Void(libIndex); 47 47 if (lib) { 48 48 retStr = lib->nodeComp(); -
trunk/lang/matlab/rpLibPut.cc
r162 r1085 54 54 /* Call the C++ subroutine. */ 55 55 if ( (libIndex > 0) && (!path.empty()) ) { 56 lib = getObject_Lib(libIndex);56 lib = (RpLibrary*) getObject_Void(libIndex); 57 57 58 58 if (lib) { -
trunk/lang/matlab/rpLibPutData.cc
r597 r1085 58 58 /* Call the C++ subroutine. */ 59 59 if ( (libIndex > 0) && (!path.empty()) ) { 60 lib = getObject_Lib(libIndex);60 lib = (RpLibrary*) getObject_Void(libIndex); 61 61 62 62 if (lib) { -
trunk/lang/matlab/rpLibPutDouble.cc
r162 r1085 55 55 /* Call the C subroutine. */ 56 56 if ( (libIndex > 0) && (!path.empty()) ) { 57 lib = getObject_Lib(libIndex);57 lib = (RpLibrary*) getObject_Void(libIndex); 58 58 59 59 if (lib) { -
trunk/lang/matlab/rpLibPutFile.cc
r597 r1085 58 58 /* Call the C++ subroutine. */ 59 59 if ( (libIndex > 0) && (!path.empty()) ) { 60 lib = getObject_Lib(libIndex);60 lib = (RpLibrary*) getObject_Void(libIndex); 61 61 62 62 if (lib) { -
trunk/lang/matlab/rpLibPutString.cc
r162 r1085 54 54 /* Call the C++ subroutine. */ 55 55 if ( (libIndex > 0) && (!path.empty()) ) { 56 lib = getObject_Lib(libIndex);56 lib = (RpLibrary*) getObject_Void(libIndex); 57 57 58 58 if (lib) { -
trunk/lang/matlab/rpLibResult.cc
r962 r1085 51 51 /* Call the C subroutine. */ 52 52 if (libIndex > 0) { 53 lib = getObject_Lib(libIndex);53 lib = (RpLibrary*) getObject_Void(libIndex); 54 54 if (lib) { 55 55 lib->put("tool.version.rappture.language", "matlab"); -
trunk/lang/matlab/rpLibXml.cc
r162 r1085 43 43 /* Call the C subroutine. */ 44 44 if (libIndex > 0) { 45 lib = getObject_Lib(libIndex);45 lib = (RpLibrary*) getObject_Void(libIndex); 46 46 if (lib) { 47 47 retStr = lib->xml();
Note: See TracChangeset
for help on using the changeset viewer.