diff --git a/Common/Libraries/ComponentProxy/include/ComponentProxy.h b/Common/Libraries/ComponentProxy/include/ComponentProxy.h index 6a798f2952c6118f4d93922b7073d2c947fd8698..849d6b30e69703bb9c0d143d46265d0f1bae0bd6 100644 --- a/Common/Libraries/ComponentProxy/include/ComponentProxy.h +++ b/Common/Libraries/ComponentProxy/include/ComponentProxy.h @@ -55,10 +55,10 @@ class ComponentProxy ComponentProxy(); ComponentProxy(const char*, maci::ContainerServices*); virtual ~ComponentProxy(); - void loadDefault() throw (ComponentErrors::CouldntGetComponentExImpl); + void loadDefault(); //throw (ComponentErrors::CouldntGetComponentExImpl); void unload(); //ComponentVar getComponentVar(){ return m_component_var;}; - ComponentVar& operator->() throw (ComponentErrors::CouldntGetComponentExImpl); + ComponentVar& operator->(); //throw (ComponentErrors::CouldntGetComponentExImpl); void setError(){ m_error = true;}; void resetError(){ m_error = false;}; bool isError(){ return m_error;}; @@ -103,7 +103,7 @@ ComponentProxy::~ComponentProxy() template void ComponentProxy::loadDefault() -throw (ComponentErrors::CouldntGetComponentExImpl) +//throw (ComponentErrors::CouldntGetComponentExImpl) { if(m_name == "") { @@ -230,7 +230,7 @@ ComponentProxy::setContainerServices( template ComponentVar& ComponentProxy::operator->() -throw (ComponentErrors::CouldntGetComponentExImpl) +//throw (ComponentErrors::CouldntGetComponentExImpl) { loadDefault(); //return m_component_var.out();