X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FEvents%2FEvents_MessageGroup.h;h=a2aa26084a5797bb0fe0c0298b6d2bc515b34b4e;hb=a38f270b638caaae45d18674b48b8b7479e2ee26;hp=46d7c420a5fd11d3913a779268de2d32d2f8ee6d;hpb=4cbd08290dc7a540e3fa93913d484e8336df90d9;p=modules%2Fshaper.git diff --git a/src/Events/Events_MessageGroup.h b/src/Events/Events_MessageGroup.h index 46d7c420a..a2aa26084 100644 --- a/src/Events/Events_MessageGroup.h +++ b/src/Events/Events_MessageGroup.h @@ -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,28 +8,29 @@ #define Events_MessageGroup_H_ #include +#include -/**\class Events_Message +/**\class Events_MessageGroup * \ingroup EventsLoop * \brief Message that allows to group messages and send them later as a group of messages. * * 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_MessageGroup(const Events_ID theID, const void* theSender = 0); //! 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 std::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 std::shared_ptr& theJoined) = 0; }; #endif