From: Robert L. <rle...@us...> - 2007-03-05 10:46:18
|
Update of /cvsroot/ccmtools/ccmtools/test/CppAssembly/prototype1/impl/space In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv30909/test/CppAssembly/prototype1/impl/space Modified Files: Alien_impl.cc Alien_impl.h Log Message: new prototype Index: Alien_impl.h =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/CppAssembly/prototype1/impl/space/Alien_impl.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Alien_impl.h 5 Mar 2007 10:26:20 -0000 1.6 --- Alien_impl.h 5 Mar 2007 10:46:14 -0000 1.7 *************** *** 28,32 **** { private: ! ::wamas::platform::utils::SmartPtr< ::Components::CCMObject> inner_; ::Components::Cookie Ar6a_; --- 28,32 ---- { private: ! ::Components::CCMObject::SmartPtr inner_; ::Components::Cookie Ar6a_; Index: Alien_impl.cc =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/CppAssembly/prototype1/impl/space/Alien_impl.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Alien_impl.cc 5 Mar 2007 10:26:20 -0000 1.4 --- Alien_impl.cc 5 Mar 2007 10:46:14 -0000 1.5 *************** *** 142,145 **** --- 142,150 ---- inner_->connect("r2", inner_->provide_facet("p2")); + inner_->connect("r5", inner_->provide_facet("p5a")); + inner_->connect("r5", inner_->provide_facet("p5b")); + + inner_->configuration_complete(); + } catch(...) { throw Components::CCMException(Components::CREATE_ERROR); *************** *** 161,164 **** --- 166,171 ---- try { + inner_->remove(); + } catch(...) { throw Components::CCMException(Components::REMOVE_ERROR); |