Salome HOME
setDisplayed has to be called in order to synchronize internal state of the object
[modules/shaper.git] / src / Events / Events_MessageGroup.h
index b41d4ffcb557d08fa0d2883cf9b55f2cfe5089e1..a2aa26084a5797bb0fe0c0298b6d2bc515b34b4e 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:       Events_MessageGroup.hxx
 // Created:    Thu Mar 13 2014
 // Author:     Mikhail PONIKAROV
@@ -6,9 +8,9 @@
 #define Events_MessageGroup_H_
 
 #include <Events_Message.h>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
-/**\class Events_Message
+/**\class Events_MessageGroup
  * \ingroup EventsLoop
  * \brief Message that allows to group messages and send them later as a group of messages.
  *
@@ -26,9 +28,9 @@ class EVENTS_EXPORT Events_MessageGroup : public Events_Message
   virtual ~Events_MessageGroup();
 
   //! Creates a new empty group (to store it in the loop before flush)
-  virtual boost::shared_ptr<Events_MessageGroup> newEmpty() = 0;
+  virtual std::shared_ptr<Events_MessageGroup> newEmpty() = 0;
   //! Allows to join the given message with the current one
-  virtual void Join(const boost::shared_ptr<Events_MessageGroup>& theJoined) = 0;
+  virtual void Join(const std::shared_ptr<Events_MessageGroup>& theJoined) = 0;
 };
 
 #endif