Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / Events / Events_Message.h
index fe829a46895ad8da1c6049ebe5978a3088fc9909..68b757e8fc91a9dcff60557b6743761eda2708be 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:       Events_Message.hxx
 // Created:    Thu Mar 13 2014
 // Author:     Mikhail PONIKAROV
  * \brief Identifier of the event kind.
  *
  * Each event ID is created in main Envent_Loop class
- * that stores correspondance between the string-name of the
+ * that stores correspondence between the string-name of the
  * identifier and the pointer to the static string that is really
- * used as an identifier (this is usefull for debugging of the events
+ * used as an identifier (this is useful for debugging of the events
  * with log files and in debugger).
  */
-class EVENTS_EXPORT Events_ID {
-  char* myID; ///< pointer to the text-identifier of the event, unique pointer for all events of such type
+class EVENTS_EXPORT Events_ID
+{
+  /// pointer to the text-identifier of the event, unique pointer for all events of such type
+  char* myID;  
 
-  Events_ID(char* theID) {myID = theID;}
+  Events_ID(char* theID)
+  {
+    myID = theID;
+  }
 
   friend class Events_Loop;
-public:
+ public:
   /// Returns the text-identifier of the event (for debugging reasons)
-  char* eventText() const {return myID;}
+  char* eventText() const
+  {
+    return myID;
+  }
   /// Allows to compare identifiers
-  bool operator==(const Events_ID& theID) const {return myID == theID.myID;}
+  bool operator==(const Events_ID& theID) const
+  {
+    return myID == theID.myID;
+  }
 };
 
 /**\class Events_Message
@@ -35,23 +48,35 @@ public:
  * \brief Message for communication between sender and listener of event.
  * Normally it is inherited by the higher-level 
  */
-class EVENTS_EXPORT Events_Message {
-  Events_ID myEventsId; ///< identifier of the event
-  void* mySender; ///< the sender object
+class EVENTS_EXPORT Events_Message
+{
+  Events_ID myEventsId;  ///< identifier of the event
+  void* mySender;  ///< the sender object
 
-public:
+ public:
 
   //! Creates the message
   Events_Message(const Events_ID theID, const void* theSender = 0)
-    : myEventsId(theID), mySender((void*) theSender) {}
+      : myEventsId(theID),
+        mySender((void*) theSender)
+  {
+  }
   //! do nothing in the destructor yet
-  virtual ~Events_Message() {}
+  virtual ~Events_Message()
+  {
+  }
 
   //! Returns identifier of the message
-  const Events_ID& eventID() const {return myEventsId;}
+  const Events_ID& eventID() const
+  {
+    return myEventsId;
+  }
 
   //! Returns sender of the message or NULL if it is anonymous message
-  void* sender() const {return mySender;}
+  void* sender() const
+  {
+    return mySender;
+  }
 };
 
 #endif