Update of /cvsroot/ccmtools/ccmtools/test/CppGenerator/receptacle_inheritance/impl
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv26550/test/CppGenerator/receptacle_inheritance/impl
Modified Files:
Test_impl.cc
Log Message:
bug fix: wrong use of local impl. interfaces
Index: Test_impl.cc
===================================================================
RCS file: /cvsroot/ccmtools/ccmtools/test/CppGenerator/receptacle_inheritance/impl/Test_impl.cc,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Test_impl.cc 5 Jan 2007 14:17:28 -0000 1.14
--- Test_impl.cc 9 Mar 2007 09:06:27 -0000 1.15
***************
*** 2,14 ****
/***
* Test 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.
***/
--- 2,14 ----
/***
* Test 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.
***/
***************
*** 45,49 ****
{
! CCM_InterfaceType::SmartPtr receptacle = ctx->get_connection_a_receptacle();
string str1 = "Hallo to first op()";
long size1 = receptacle->op1(str1);
--- 45,49 ----
{
! InterfaceType::SmartPtr receptacle = ctx->get_connection_a_receptacle();
string str1 = "Hallo to first op()";
long size1 = receptacle->op1(str1);
|