Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / Events / Events_Message.h
index fe829a46895ad8da1c6049ebe5978a3088fc9909..ef8837c93f51d929f7c85896c584a0390bac811d 100644 (file)
  * used as an identifier (this is usefull 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
+{
+  char* myID;  ///< pointer to the text-identifier of the event, unique pointer for all events of such type
 
-  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 +45,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