Update of /cvsroot/ccmtools/ccmtools/test/CppRemoteGenerator/facet_constants/impl
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv23270/test/CppRemoteGenerator/facet_constants/impl
Modified Files:
Test_iface_impl.cc
Log Message:
version 0.8.7 merged
Index: Test_iface_impl.cc
===================================================================
RCS file: /cvsroot/ccmtools/ccmtools/test/CppRemoteGenerator/facet_constants/impl/Test_iface_impl.cc,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Test_iface_impl.cc 5 Jan 2007 18:58:54 -0000 1.8
--- Test_iface_impl.cc 13 Feb 2007 10:16:11 -0000 1.9
***************
*** 23,40 ****
: component(component_impl)
{
! cout << " BOOLEAN_CONST = " << Constants::BOOLEAN_CONST << endl;
! cout << " OCTET_CONST = " << (int)Constants::OCTET_CONST << endl;
! cout << " SHORT_CONST = " << Constants::SHORT_CONST << endl;
! cout << " SHORT_CONST = " << Constants::SHORT_CONST << endl;
! cout << " USHORT_CONST = " << Constants::USHORT_CONST << endl;
! cout << " LONG_CONST = " << Constants::LONG_CONST << endl;
! cout << " ULONG_CONST = " << Constants::ULONG_CONST << endl;
! cout << " CHAR_CONST = " << Constants::CHAR_CONST << endl;
! cout << " STRING_CONST = " << Constants::STRING_CONST << endl;
! cout << " FLOAT_CONST = " << Constants::FLOAT_CONST << endl;
! cout << " DOUBLE_CONST = " << Constants::DOUBLE_CONST << endl;
}
--- 23,40 ----
: component(component_impl)
{
! cout << " BOOLEAN_CONST = " << Constants::BOOLEAN_CONST() << endl;
! cout << " OCTET_CONST = " << (int)Constants::OCTET_CONST() << endl;
! cout << " SHORT_CONST = " << Constants::SHORT_CONST() << endl;
! cout << " SHORT_CONST = " << Constants::SHORT_CONST() << endl;
! cout << " USHORT_CONST = " << Constants::USHORT_CONST() << endl;
! cout << " LONG_CONST = " << Constants::LONG_CONST() << endl;
! cout << " ULONG_CONST = " << Constants::ULONG_CONST() << endl;
! cout << " CHAR_CONST = " << Constants::CHAR_CONST() << endl;
! cout << " STRING_CONST = " << Constants::STRING_CONST() << endl;
! cout << " FLOAT_CONST = " << Constants::FLOAT_CONST() << endl;
! cout << " DOUBLE_CONST = " << Constants::DOUBLE_CONST() << endl;
}
***************
*** 48,52 ****
throw(Components::CCMException)
{
! return Constants::BOOLEAN_CONST;
}
--- 48,52 ----
throw(Components::CCMException)
{
! return Constants::BOOLEAN_CONST();
}
***************
*** 55,59 ****
throw(Components::CCMException)
{
! return Constants::OCTET_CONST;
}
--- 55,59 ----
throw(Components::CCMException)
{
! return Constants::OCTET_CONST();
}
***************
*** 62,66 ****
throw(Components::CCMException)
{
! return Constants::SHORT_CONST;
}
--- 62,66 ----
throw(Components::CCMException)
{
! return Constants::SHORT_CONST();
}
***************
*** 69,73 ****
throw(Components::CCMException)
{
! return Constants::USHORT_CONST;
}
--- 69,73 ----
throw(Components::CCMException)
{
! return Constants::USHORT_CONST();
}
***************
*** 76,80 ****
throw(Components::CCMException)
{
! return Constants::LONG_CONST;
}
--- 76,80 ----
throw(Components::CCMException)
{
! return Constants::LONG_CONST();
}
***************
*** 83,87 ****
throw(Components::CCMException)
{
! return Constants::ULONG_CONST;
}
--- 83,87 ----
throw(Components::CCMException)
{
! return Constants::ULONG_CONST();
}
***************
*** 90,94 ****
throw(Components::CCMException)
{
! return Constants::CHAR_CONST;
}
--- 90,94 ----
throw(Components::CCMException)
{
! return Constants::CHAR_CONST();
}
***************
*** 97,101 ****
throw(Components::CCMException)
{
! return Constants::STRING_CONST;
}
--- 97,101 ----
throw(Components::CCMException)
{
! return Constants::STRING_CONST();
}
***************
*** 104,108 ****
throw(Components::CCMException)
{
! return Constants::FLOAT_CONST;
}
--- 104,108 ----
throw(Components::CCMException)
{
! return Constants::FLOAT_CONST();
}
***************
*** 111,115 ****
throw(Components::CCMException)
{
! return Constants::DOUBLE_CONST;
}
--- 111,115 ----
throw(Components::CCMException)
{
! return Constants::DOUBLE_CONST();
}
|