summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/Indirection
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/OBV/Indirection')
-rw-r--r--TAO/tests/OBV/Indirection/Factory.cpp10
-rw-r--r--TAO/tests/OBV/Indirection/Factory.h10
2 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tests/OBV/Indirection/Factory.cpp b/TAO/tests/OBV/Indirection/Factory.cpp
index 56e0938bd73..8a827f7e66b 100644
--- a/TAO/tests/OBV/Indirection/Factory.cpp
+++ b/TAO/tests/OBV/Indirection/Factory.cpp
@@ -9,7 +9,7 @@ NodeFactory::register_new_factory (CORBA::ORB& orb) {
}
CORBA::ValueBase*
-NodeFactory::create_for_unmarshal (void)
+NodeFactory::create_for_unmarshal ()
{
::CORBA::ValueBase *ret_val = 0;
ACE_NEW_THROW_EX (
@@ -29,7 +29,7 @@ BoxedValueFactory::register_new_factory (CORBA::ORB& orb) {
}
CORBA::ValueBase*
-BoxedValueFactory::create_for_unmarshal (void)
+BoxedValueFactory::create_for_unmarshal ()
{
::CORBA::ValueBase *ret_val = 0;
ACE_NEW_THROW_EX (
@@ -49,7 +49,7 @@ BaseValueFactory::register_new_factory (CORBA::ORB& orb) {
}
CORBA::ValueBase*
-BaseValueFactory::create_for_unmarshal (void)
+BaseValueFactory::create_for_unmarshal ()
{
::CORBA::ValueBase *ret_val = 0;
ACE_NEW_THROW_EX (
@@ -69,7 +69,7 @@ TValueFactory::register_new_factory (CORBA::ORB& orb) {
}
CORBA::ValueBase*
-TValueFactory::create_for_unmarshal (void)
+TValueFactory::create_for_unmarshal ()
{
::CORBA::ValueBase *ret_val = 0;
ACE_NEW_THROW_EX (
@@ -89,7 +89,7 @@ ConfigValueFactory::register_new_factory (CORBA::ORB& orb) {
}
CORBA::ValueBase*
-ConfigValueFactory::create_for_unmarshal (void)
+ConfigValueFactory::create_for_unmarshal ()
{
::CORBA::ValueBase *ret_val = 0;
ACE_NEW_THROW_EX (
diff --git a/TAO/tests/OBV/Indirection/Factory.h b/TAO/tests/OBV/Indirection/Factory.h
index 9ea876feab7..17f21158d02 100644
--- a/TAO/tests/OBV/Indirection/Factory.h
+++ b/TAO/tests/OBV/Indirection/Factory.h
@@ -6,7 +6,7 @@ class NodeFactory : public CORBA::ValueFactoryBase
{
public:
static void register_new_factory(CORBA::ORB& orb);
- virtual CORBA::ValueBase* create_for_unmarshal(void);
+ virtual CORBA::ValueBase* create_for_unmarshal();
};
@@ -14,7 +14,7 @@ class BoxedValueFactory : public CORBA::ValueFactoryBase
{
public:
static void register_new_factory(CORBA::ORB& orb);
- virtual CORBA::ValueBase* create_for_unmarshal(void);
+ virtual CORBA::ValueBase* create_for_unmarshal();
};
@@ -22,7 +22,7 @@ class BaseValueFactory : public CORBA::ValueFactoryBase
{
public:
static void register_new_factory(CORBA::ORB& orb);
- virtual CORBA::ValueBase* create_for_unmarshal(void);
+ virtual CORBA::ValueBase* create_for_unmarshal();
};
@@ -30,14 +30,14 @@ class TValueFactory : public CORBA::ValueFactoryBase
{
public:
static void register_new_factory(CORBA::ORB& orb);
- virtual CORBA::ValueBase* create_for_unmarshal(void);
+ virtual CORBA::ValueBase* create_for_unmarshal();
};
class ConfigValueFactory : public CORBA::ValueFactoryBase
{
public:
static void register_new_factory(CORBA::ORB& orb);
- virtual CORBA::ValueBase* create_for_unmarshal(void);
+ virtual CORBA::ValueBase* create_for_unmarshal();
};
class ConfigValueImpl : public ::OBV_demo::value::idl::ConfigValue