|
From: Robert L. <rle...@us...> - 2007-03-09 09:03:56
|
Update of /cvsroot/ccmtools/ccmtools/test/CppGenerator/facet_constants/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25405/test/CppGenerator/facet_constants/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_constants/impl/TestMirror_impl.cc,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TestMirror_impl.cc 5 Jan 2007 14:17:27 -0000 1.11 --- TestMirror_impl.cc 9 Mar 2007 09:03:53 -0000 1.12 *************** *** 5,13 **** * * TestMirror component business logic implementation. ! * ! * // TODO: WRITE YOUR DESCRIPTION HERE! * * @author ! * @version ***/ --- 5,13 ---- * * TestMirror component business logic implementation. ! * ! * // TODO: WRITE YOUR DESCRIPTION HERE! * * @author ! * @version ***/ *************** *** 45,49 **** throw(Components::CCMException) { ! CCM_Constants::SmartPtr constants = ctx->get_connection_iface(); { // const boolean BOOLEAN_CONST = TRUE; --- 45,49 ---- throw(Components::CCMException) { ! Constants::SmartPtr constants = ctx->get_connection_iface(); { // const boolean BOOLEAN_CONST = TRUE; *************** *** 55,59 **** { // const octet OCTET_CONST = 255; ! unsigned char initial = 255; unsigned char result = constants->getOctetValue(); assert(initial == result); --- 55,59 ---- { // const octet OCTET_CONST = 255; ! unsigned char initial = 255; unsigned char result = constants->getOctetValue(); assert(initial == result); *************** *** 96,100 **** { ! // const string STRING_CONST = "1234567890"; string initial = "1234567890"; string result = constants->getStringValue(); --- 96,100 ---- { ! // const string STRING_CONST = "1234567890"; string initial = "1234567890"; string result = constants->getStringValue(); |