X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_PointerMessage.h;h=4edb8c31e8f39dba3658f227a4ec95dda574ebf5;hb=60e95a5502a6940c6c27ce5d561b3c684b0b0a4f;hp=e0ac3e44094c5329969604194d2b4e869164f9c2;hpb=cf6ecce56482c1e15c6381d76b553004f87d3dd3;p=modules%2Fshaper.git diff --git a/src/Config/Config_PointerMessage.h b/src/Config/Config_PointerMessage.h index e0ac3e440..4edb8c31e 100644 --- a/src/Config/Config_PointerMessage.h +++ b/src/Config/Config_PointerMessage.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + /* * Config_PointerMessage.h * @@ -8,22 +10,23 @@ #ifndef PARTSET_MESSAGE_H_ #define PARTSET_MESSAGE_H_ -#include -#include +#include +#include -/* - * A general class to pass pointers over the event loop. +/*! + * \class Config_PointerMessage + * \brief A general class to pass pointers over the event loop. */ -class CONFIG_EXPORT Config_PointerMessage: public Event_Message +class CONFIG_EXPORT Config_PointerMessage : public Events_Message { -public: - Config_PointerMessage(const Event_ID theId, const void* theParent = 0); + public: + Config_PointerMessage(const Events_ID theId, const void* theParent = 0); virtual ~Config_PointerMessage(); void* pointer() const; void setPointer(void* pointer); -private: + private: void* myPointer; };