X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_PointerMessage.h;h=872c4365509effdc6d0ae624337860874c6f77e4;hb=4e04f27e9f9639aaf902c9221e494677c70b94ae;hp=0e3c726caa094e05e0392032a357952e35b2fafb;hpb=47933cff9cf39f2d420b8a772ac125d2a969d2b5;p=modules%2Fshaper.git diff --git a/src/Config/Config_PointerMessage.h b/src/Config/Config_PointerMessage.h index 0e3c726ca..872c43655 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 * @@ -11,20 +13,25 @@ #include #include -/* - * A general class to pass pointers over the event loop. +/*! + * \class Config_PointerMessage + * \ingroup Config + * \brief A general class to pass pointers over the event loop. */ -class CONFIG_EXPORT Config_PointerMessage: public Events_Message +class CONFIG_EXPORT Config_PointerMessage : public Events_Message { -public: + public: + /// Constructor Config_PointerMessage(const Events_ID theId, const void* theParent = 0); virtual ~Config_PointerMessage(); + /// Returns pointer to an object void* pointer() const; + /// Sets pointer to an object void setPointer(void* pointer); -private: - void* myPointer; + private: + void* myPointer; ///< Pointer to an object }; #endif /* PARTSET_MESSAGE_H_ */