summaryrefslogtreecommitdiff
path: root/TAO/tao/TypeCodeFactory_Adapter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TypeCodeFactory_Adapter.cpp')
-rw-r--r--TAO/tao/TypeCodeFactory_Adapter.cpp136
1 files changed, 68 insertions, 68 deletions
diff --git a/TAO/tao/TypeCodeFactory_Adapter.cpp b/TAO/tao/TypeCodeFactory_Adapter.cpp
index b6620145094..16c3ba57982 100644
--- a/TAO/tao/TypeCodeFactory_Adapter.cpp
+++ b/TAO/tao/TypeCodeFactory_Adapter.cpp
@@ -12,195 +12,195 @@ TAO_TypeCodeFactory_Adapter::~TAO_TypeCodeFactory_Adapter (void)
// Methods to be overridden.
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_struct_tc (
const char * /* id */,
const char * /* name */,
- const CORBA_StructMemberSeq & /* members */,
- CORBA::Environment &
- )
+ const CORBA_StructMemberSeq & /* members */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_union_tc (
const char * /* id */,
const char * /* name */,
CORBA::TypeCode_ptr /* discriminator_type */,
- const CORBA_UnionMemberSeq & /* members */,
- CORBA::Environment &
- )
+ const CORBA_UnionMemberSeq & /* members */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_enum_tc (
const char * /* id */,
const char * /* name */,
- const CORBA_EnumMemberSeq & /* members */,
- CORBA::Environment &
- )
+ const CORBA_EnumMemberSeq & /* members */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_alias_tc (
const char * /* id */,
const char * /* name */,
- CORBA::TypeCode_ptr /* original_type */,
- CORBA::Environment &
- )
+ CORBA::TypeCode_ptr /* original_type */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_exception_tc (
const char * /* id */,
const char * /* name */,
- const CORBA_StructMemberSeq & /* members */,
- CORBA::Environment &
- )
+ const CORBA_StructMemberSeq & /* members */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_interface_tc (
const char * /* id */,
- const char * /* name */,
- CORBA::Environment &
- )
+ const char * /* name */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_string_tc (
- CORBA::ULong /* bound */,
- CORBA::Environment &
- )
+ CORBA::ULong /* bound */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_wstring_tc (
- CORBA::ULong /* bound */,
- CORBA::Environment &
- )
+ CORBA::ULong /* bound */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_fixed_tc (
CORBA::UShort /* digits */,
- CORBA::UShort /* scale */,
- CORBA::Environment &
- )
+ CORBA::UShort /* scale */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_sequence_tc (
CORBA::ULong /* bound */,
- CORBA::TypeCode_ptr /* element_type */,
- CORBA::Environment &
- )
+ CORBA::TypeCode_ptr /* element_type */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_array_tc (
CORBA::ULong /* length */,
- CORBA::TypeCode_ptr /* element_type */,
- CORBA::Environment &
+ CORBA::TypeCode_ptr /* element_type */
+ TAO_ENV_ARG_DECL_NOT_USED
)
ACE_THROW_SPEC ((CORBA::SystemException))
-{
+{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_value_tc (
const char * /* id */,
const char * /* name */,
CORBA::ValueModifier /* type_modifier */,
CORBA::TypeCode_ptr /* concrete_base */,
- const CORBA_ValueMemberSeq & /* members */,
- CORBA::Environment &
- )
+ const CORBA_ValueMemberSeq & /* members */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_value_box_tc (
const char * /* id */,
const char * /* name */,
- CORBA::TypeCode_ptr /* boxed_type */,
- CORBA::Environment &
- )
+ CORBA::TypeCode_ptr /* boxed_type */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_native_tc (
const char * /* id */,
- const char * /* name */,
- CORBA::Environment &
- )
+ const char * /* name */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_recursive_tc (
- const char * /* id */,
- CORBA::Environment &
- )
+ const char * /* id */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_abstract_interface_tc (
const char * /* id */,
- const char * /* name */,
- CORBA::Environment &
- )
+ const char * /* name */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();
}
-CORBA::TypeCode_ptr
+CORBA::TypeCode_ptr
TAO_TypeCodeFactory_Adapter::create_local_interface_tc (
const char * /* id */,
- const char * /* name */,
- CORBA::Environment &
- )
+ const char * /* name */
+ TAO_ENV_ARG_DECL_NOT_USED
+ )
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::TypeCode::_nil ();