From: ouv Date: Mon, 17 Apr 2006 10:38:39 +0000 (+0000) Subject: Some exports removed. X-Git-Tag: LAST_STABLE_VERSION_21_09_2006_ON_3_2_0~81 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=46ef39679ed060aa35f0900f547ed4de2b455830;p=modules%2Fgui.git Some exports removed. --- diff --git a/src/Event/SALOME_Event.hxx b/src/Event/SALOME_Event.hxx index 13585c0c3..0ed96bd50 100755 --- a/src/Event/SALOME_Event.hxx +++ b/src/Event/SALOME_Event.hxx @@ -96,7 +96,7 @@ private: // Template classes for member function //------------------------------------- template -class EVENT_EXPORT TMemFunEvent: public SALOME_Event{ +class TMemFunEvent: public SALOME_Event{ public: typedef TRes TResult; TResult myResult; @@ -117,7 +117,7 @@ private: template -class EVENT_EXPORT TVoidMemFunEvent: public SALOME_Event{ +class TVoidMemFunEvent: public SALOME_Event{ public: typedef void (TObject::* TAction)(); TVoidMemFunEvent(TObject* theObject, TAction theAction): @@ -137,7 +137,7 @@ private: //----------------------------------------------- template -class EVENT_EXPORT TMemFun1ArgEvent: public SALOME_Event{ +class TMemFun1ArgEvent: public SALOME_Event{ public: typedef TRes TResult; TResult myResult; @@ -160,7 +160,7 @@ private: template -class EVENT_EXPORT TVoidMemFun1ArgEvent: public SALOME_Event{ +class TVoidMemFun1ArgEvent: public SALOME_Event{ public: typedef void (TObject::* TAction)(TArg); TVoidMemFun1ArgEvent(TObject* theObject, TAction theAction, TArg theArg): @@ -183,7 +183,7 @@ private: template -class EVENT_EXPORT TMemFun2ArgEvent: public SALOME_Event{ +class TMemFun2ArgEvent: public SALOME_Event{ public: typedef TRes TResult; TResult myResult; @@ -210,7 +210,7 @@ private: template -class EVENT_EXPORT TVoidMemFun2ArgEvent: public SALOME_Event{ +class TVoidMemFun2ArgEvent: public SALOME_Event{ public: typedef void (TObject::* TAction)(TArg,TArg1); TVoidMemFun2ArgEvent(TObject* theObject, TAction theAction, TArg theArg, TArg1 theArg1):