From: Robert L. <rle...@us...> - 2007-03-09 08:04:38
|
Update of /cvsroot/ccmtools/ccmtools/test/CppGenerator/facet_inheritance/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv2532/test/CppGenerator/facet_inheritance/impl Modified Files: TestMirror_impl.cc Log Message: bug fix: wrong use of local impl. interfaces Index: TestMirror_impl.cc =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/CppGenerator/facet_inheritance/impl/TestMirror_impl.cc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TestMirror_impl.cc 5 Jan 2007 14:17:27 -0000 1.10 --- TestMirror_impl.cc 9 Mar 2007 08:04:32 -0000 1.11 *************** *** 1,13 **** /*** * TestMirror component business logic implementation. ! * ! * // TODO: WRITE YOUR DESCRIPTION HERE! * * @author ! * @version * * This file structure was automatically generated by CCM Tools * <http://ccmtools.sourceforge.net/> and contains a component's ! * implementation classes. ***/ --- 1,13 ---- /*** * TestMirror component business logic implementation. ! * ! * // TODO: WRITE YOUR DESCRIPTION HERE! * * @author ! * @version * * This file structure was automatically generated by CCM Tools * <http://ccmtools.sourceforge.net/> and contains a component's ! * implementation classes. ***/ *************** *** 42,46 **** throw(Components::CCMException) { ! CCM_InterfaceType::SmartPtr receptacle = ctx->get_connection_a_facet(); string str1 = "Hallo to first op()"; long size1 = receptacle->op1(str1); --- 42,46 ---- throw(Components::CCMException) { ! InterfaceType::SmartPtr receptacle = ctx->get_connection_a_facet(); string str1 = "Hallo to first op()"; long size1 = receptacle->op1(str1); *************** *** 50,54 **** long size2 = receptacle->op2(str2); assert(size2 == str2.length()); ! string str3 = "Hallo to third op()"; long size3 = receptacle->op3(str3); --- 50,54 ---- long size2 = receptacle->op2(str2); assert(size2 == str2.length()); ! string str3 = "Hallo to third op()"; long size3 = receptacle->op3(str3); |