X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FEvents%2FEvents_MessageGroup.h;h=146f5d3bca199d0353af601d964f68ef7b0d27c3;hb=aeca03e919a402327655e3f9c133985d9223b873;hp=46c765cce99a9aab7b870674fe0817ff46f6cccf;hpb=b99cdc27de72cd0c87701ac053b99734f5965e11;p=modules%2Fshaper.git diff --git a/src/Events/Events_MessageGroup.h b/src/Events/Events_MessageGroup.h index 46c765cce..146f5d3bc 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,7 +8,7 @@ #define Events_MessageGroup_H_ #include -#include +#include /**\class Events_Message * \ingroup EventsLoop @@ -21,19 +23,14 @@ class EVENTS_EXPORT Events_MessageGroup : public Events_Message 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 boost::shared_ptr newEmpty() = 0; + virtual std::shared_ptr newEmpty() = 0; //! Allows to join the given message with the current one - virtual void Join(const boost::shared_ptr& theJoined) = 0; + virtual void Join(const std::shared_ptr& theJoined) = 0; }; #endif