From: Chris M. <zm...@us...> - 2001-05-16 22:01:52
|
Update of /cvsroot/kuml/kuml/libkuml/uml/Reflective In directory usw-pr-cvs1:/tmp/cvs-serv20626/uml/Reflective Modified Files: Reflective_impl.cc Reflective_impl.h Log Message: Initial codegen via XSLT. Index: Reflective_impl.cc =================================================================== RCS file: /cvsroot/kuml/kuml/libkuml/uml/Reflective/Reflective_impl.cc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Reflective_impl.cc 2000/10/16 04:02:12 1.1.1.1 --- Reflective_impl.cc 2001/05/16 22:01:49 1.2 *************** *** 1,3 **** --- 1,4 ---- + #include "../Foundation/copy_to_iseq.h" #include "Reflective_impl.h" *************** *** 380,392 **** ::CORBA::SystemException) ! { ! Reflective::LinkSet* retval; ! ! // add your implementation here ! // REMOVE ! mico_throw(::CORBA::NO_IMPLEMENT()); ! // REMOVE ! ! return retval; } --- 381,386 ---- ::CORBA::SystemException) ! { Reflective::LinkSet_var seq = new Reflective::LinkSet; ! return seq._retn(); } Index: Reflective_impl.h =================================================================== RCS file: /cvsroot/kuml/kuml/libkuml/uml/Reflective/Reflective_impl.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Reflective_impl.h 2000/10/16 04:02:12 1.1.1.1 --- Reflective_impl.h 2001/05/16 22:01:49 1.2 *************** *** 204,207 **** --- 204,210 ---- ::Reflective::MofError) ; + + protected: + list<Reflective::Link> fc_ref_all_links; }; |