summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/NodeApplication/Container_Impl.h
diff options
context:
space:
mode:
authorelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 18:20:09 +0000
committerelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 18:20:09 +0000
commitdb5bcfdeb2a2f493308c9d60c39ae820b8f8e415 (patch)
treeef235cfa5f0e9ce7e3099e771ec429157d94d73d /CIAO/DAnCE/NodeApplication/Container_Impl.h
parent2ee7b7eed4c0cc10f4ec25b186b04202af01b565 (diff)
downloadATCD-db5bcfdeb2a2f493308c9d60c39ae820b8f8e415.tar.gz
ChangeLogTag: Thu Jan 25 18:18:58 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'CIAO/DAnCE/NodeApplication/Container_Impl.h')
-rw-r--r--CIAO/DAnCE/NodeApplication/Container_Impl.h34
1 files changed, 13 insertions, 21 deletions
diff --git a/CIAO/DAnCE/NodeApplication/Container_Impl.h b/CIAO/DAnCE/NodeApplication/Container_Impl.h
index 35fe4db486e..7becc7b8e9e 100644
--- a/CIAO/DAnCE/NodeApplication/Container_Impl.h
+++ b/CIAO/DAnCE/NodeApplication/Container_Impl.h
@@ -62,14 +62,12 @@ namespace CIAO
/*-------------------- IDL operations (idl) ------------------*/
/// Initialize the container.
- virtual CORBA::Long init (const CORBA::PolicyList *policies
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ virtual CORBA::Long init (const CORBA::PolicyList *policies)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Install all homes and components
Deployment::ComponentInfos *
- install (const ::Deployment::ContainerImplementationInfo & container_impl_info
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ install (const ::Deployment::ContainerImplementationInfo & container_impl_info)
ACE_THROW_SPEC ((CORBA::SystemException,
Deployment::UnknownImplId,
Deployment::ImplEntryPointNotFound,
@@ -78,17 +76,17 @@ namespace CIAO
/// Remove all homes and components
virtual void
- remove (void)
+ remove ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::RemoveFailure));
/// Deployment::Container interface defined attributes/operations.
virtual ::Deployment::Properties *
- properties (void)
+ properties ()
ACE_THROW_SPEC ((CORBA::SystemException));
virtual ::Deployment::NodeApplication_ptr
- get_node_application (void)
+ get_node_application ()
ACE_THROW_SPEC ((CORBA::SystemException));
/*-------------------------------------------------------------*/
@@ -101,8 +99,7 @@ namespace CIAO
// Install the home of this particular component
virtual ::Components::CCMHome_ptr
- install_home (const ::Deployment::ComponentImplementationInfo & impl_info
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ install_home (const ::Deployment::ComponentImplementationInfo & impl_info)
ACE_THROW_SPEC ((CORBA::SystemException,
Deployment::UnknownImplId,
Deployment::ImplEntryPointNotFound,
@@ -122,39 +119,34 @@ namespace CIAO
*/
// Remove the home of this particular component
virtual void
- remove_home (const char * comp_ins_name
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ remove_home (const char * comp_ins_name)
ACE_THROW_SPEC ((CORBA::SystemException,
Components::RemoveFailure));
bool
register_with_ns (const char * obj_name,
CORBA::ORB_ptr orb,
- Components::CCMObject_ptr obj
- ACE_ENV_ARG_DECL_WITH_DEFAULTS);
+ Components::CCMObject_ptr obj);
bool
unregister_with_ns (const char * obj_name,
- CORBA::ORB_ptr orb
- ACE_ENV_ARG_DECL_WITH_DEFAULTS);
+ CORBA::ORB_ptr orb);
// ------------------- CIAO Internal Operations ------------------------
// These below two are helper methods to clean up components
// should only be called when we are sure that there is no
// active connection on this component.
- virtual void remove_components (void)
+ virtual void remove_components ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::RemoveFailure));
- virtual void remove_component (const char * comp_ins_name
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ virtual void remove_component (const char * comp_ins_name)
ACE_THROW_SPEC ((CORBA::SystemException,
Components::RemoveFailure));
/// Set the cached object reference.
- void set_objref (Deployment::Container_ptr o
- ACE_ENV_ARG_DECL_WITH_DEFAULTS);
+ void set_objref (Deployment::Container_ptr o);
/// Get the cached object reference. This operation will invoke
/// _this if there's no cached reference available. Notice that
@@ -163,7 +155,7 @@ namespace CIAO
/// @@ Gan, caller should own memory. In this case you shoudl
/// return a duplicate OR add a const to the operation
/// signature. This is simply bad programming.
- Deployment::Container_ptr get_objref (void);
+ Deployment::Container_ptr get_objref ();
protected:
/// Keep a pointer to the managing ORB serving this servant.