From: Marek P. <ma...@us...> - 2002-04-04 00:49:18
|
Update of /cvsroot/javaprofiler/library/src/prof In directory usw-pr-cvs1:/tmp/cvs-serv31762/src/prof Modified Files: prof.h Log Message: new getParents() method added to communication interface Index: prof.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/prof/prof.h,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -r1.42 -r1.43 *** prof.h 12 Mar 2002 22:17:56 -0000 1.42 --- prof.h 4 Apr 2002 00:49:15 -0000 1.43 *************** *** 957,960 **** --- 957,974 ---- Buffer& b); // out + /** Get parents. This method returns object IDs of parents + ** of given object identified by 'objId'. Result is stored + ** to 'parents' structure (in case a return value is RC_OK, + ** else undefined). + ** + ** @param objId object ID + ** @param parents output buffer + ** + ** @return RC_OK (okay); + ** RC_BAD_OBJ_ID (bad ID) */ + + virtual jint getParents( objectID objId, // in (jint) + sParents& parents); // out + private: |