X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FEvents%2FEvents_MessageGroup.h;h=46c765cce99a9aab7b870674fe0817ff46f6cccf;hb=807b0a6865b7adc824b0598dd267168b3f64a823;hp=b95f64d8716da83363c095a029ed8c331ec8edb1;hpb=fa1c75ea3a8cf13fb87c4ed8ba43ac7d59fcdd92;p=modules%2Fshaper.git diff --git a/src/Events/Events_MessageGroup.h b/src/Events/Events_MessageGroup.h index b95f64d87..46c765cce 100644 --- a/src/Events/Events_MessageGroup.h +++ b/src/Events/Events_MessageGroup.h @@ -2,10 +2,11 @@ // Created: Thu Mar 13 2014 // Author: Mikhail PONIKAROV -#ifndef Events_MessageGroup_HeaderFile -#define Events_MessageGroup_HeaderFile +#ifndef Events_MessageGroup_H_ +#define Events_MessageGroup_H_ #include +#include /**\class Events_Message * \ingroup EventsLoop @@ -14,20 +15,25 @@ * Loop detects such messages and accumulates them without sending. On "flush" loop sends it * as a group-message. */ -class EVENTS_EXPORT Events_MessageGroup : public Events_Message { +class EVENTS_EXPORT Events_MessageGroup : public Events_Message +{ -public: + public: //! Creates the message Events_MessageGroup(const Events_ID theID, const void* theSender = 0) - : Events_Message(theID, theSender) {} + : Events_Message(theID, theSender) + { + } //! do nothing in the destructor yet - virtual ~Events_MessageGroup() {} + virtual ~Events_MessageGroup() + { + } //! Creates a new empty group (to store it in the loop before flush) - virtual Events_MessageGroup* newEmpty() = 0; + virtual boost::shared_ptr newEmpty() = 0; //! Allows to join the given message with the current one - virtual void Join(Events_MessageGroup& theJoined) = 0; + virtual void Join(const boost::shared_ptr& theJoined) = 0; }; #endif