Salome HOME
updated copyright message
[modules/gui.git] / src / Event / SALOME_Event.h
index 8493680737e0547b1e21bb79088f5c4177b3fd69..c7f07784e0f8602562745e0c54b685298e610c03 100644 (file)
@@ -1,24 +1,22 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-//
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 //  KERNEL SALOME_Event : Define event posting mechanism
 //  File   : SALOME_Event.h
 //  Author : Sergey ANIKIN
@@ -75,7 +73,7 @@ public:
   TResult myResult;
   typedef TResult (TObject::* TAction)();
   TMemFunEvent(TObject* theObject, TAction theAction, 
-              TResult theResult = TResult()):
+               TResult theResult = TResult()):
     myObject(theObject),
     myAction(theAction),
     myResult(theResult)
@@ -114,7 +112,7 @@ public:
   TResult myResult;
   typedef TResult (TObject::* TAction)(TArg);
   TMemFun1ArgEvent(TObject* theObject, TAction theAction, TArg theArg, 
-                  TResult theResult = TResult()):
+                   TResult theResult = TResult()):
     myObject(theObject),
     myAction(theAction),
     myResult(theResult),
@@ -158,8 +156,8 @@ public:
   TResult myResult;
   typedef TResult (TObject::* TAction)(TArg,TArg1);
   TMemFun2ArgEvent(TObject* theObject, TAction theAction, 
-                  TArg theArg, TArg1 theArg1,
-                  TResult theResult = TResult()):
+                   TArg theArg, TArg1 theArg1,
+                   TResult theResult = TResult()):
     myObject(theObject),
     myAction(theAction),
     myResult(theResult),