X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_PointerMessage.h;h=872c4365509effdc6d0ae624337860874c6f77e4;hb=817439b17505a397a77d29308faf277611a341c9;hp=e745beb0e48dc3abc0eb83794edb8d4f86ac683c;hpb=3874b57fe5aba25ff5aee2a07654fc23c1ee8eb0;p=modules%2Fshaper.git diff --git a/src/Config/Config_PointerMessage.h b/src/Config/Config_PointerMessage.h index e745beb0e..872c43655 100644 --- a/src/Config/Config_PointerMessage.h +++ b/src/Config/Config_PointerMessage.h @@ -13,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 { 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; + void* myPointer; ///< Pointer to an object }; #endif /* PARTSET_MESSAGE_H_ */