From: srn Date: Wed, 6 Apr 2005 09:13:58 +0000 (+0000) Subject: Added & to return arguments X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=73ae86d296dc98812964d46c877a443bd1ac31f5;p=modules%2Fkernel.git Added & to return arguments --- diff --git a/src/SALOMEDSClient/SALOMEDSClient_SObject.hxx b/src/SALOMEDSClient/SALOMEDSClient_SObject.hxx index 35914f7c8..f6b52e1bb 100644 --- a/src/SALOMEDSClient/SALOMEDSClient_SObject.hxx +++ b/src/SALOMEDSClient/SALOMEDSClient_SObject.hxx @@ -18,9 +18,9 @@ public: virtual char* GetID() = 0; virtual SALOMEDSClient_SComponent* GetFatherComponent() = 0; virtual SALOMEDSClient_SObject* GetFather() = 0; - virtual bool FindAttribute(SALOMEDSClient_GenericAttribute* anAttribute, const char* aTypeOfAttribute) = 0; - virtual bool ReferencedObject(SALOMEDSClient_SObject* theObject) = 0; - virtual bool FindSubObject(int theTag, SALOMEDSClient_SObject* theObject) = 0; + virtual bool FindAttribute(SALOMEDSClient_GenericAttribute*& anAttribute, const char* aTypeOfAttribute) = 0; + virtual bool ReferencedObject(SALOMEDSClient_SObject*& theObject) = 0; + virtual bool FindSubObject(int theTag, SALOMEDSClient_SObject*& theObject) = 0; virtual SALOMEDSClient_Study* GetStudy() = 0; virtual char* Name() = 0; virtual void Name(const char* theName) = 0;