summaryrefslogtreecommitdiff
path: root/TAO/examples/Quoter/Generic_Factory_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Quoter/Generic_Factory_i.h')
-rw-r--r--TAO/examples/Quoter/Generic_Factory_i.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/examples/Quoter/Generic_Factory_i.h b/TAO/examples/Quoter/Generic_Factory_i.h
index f9066ee3a9e..e0477100101 100644
--- a/TAO/examples/Quoter/Generic_Factory_i.h
+++ b/TAO/examples/Quoter/Generic_Factory_i.h
@@ -29,15 +29,15 @@ public:
Quoter_Generic_Factory_i (int debug_level = 1);
~Quoter_Generic_Factory_i (void);
- CORBA::Boolean supports (const CosLifeCycle::Key &factory_key,
- CORBA::Environment &_env_there)
+ CORBA::Boolean supports (const CosLifeCycle::Key &factory_key
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
// Returns true if the Generic Factory is able to forward a request
// for creating an object described by the <factory_key>.
CORBA::Object_ptr create_object (const CosLifeCycle::Key &factory_key,
- const CosLifeCycle::Criteria &the_criteria,
- CORBA::Environment &_env_there)
+ const CosLifeCycle::Criteria &the_criteria
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
CosLifeCycle::NoFactory,
CosLifeCycle::InvalidCriteria,
@@ -47,8 +47,8 @@ public:
// request to a more concrete Factory.
private:
- CosNaming::NamingContext_ptr get_naming_context (const CosLifeCycle::Key &factory_key,
- CORBA::Environment &);
+ CosNaming::NamingContext_ptr get_naming_context (const CosLifeCycle::Key &factory_key
+ TAO_ENV_ARG_DECL_NOT_USED);
// a helper to get the proper naming context.
int debug_level_;