Salome HOME
Fix SketcherSetEqual.test_length_equality
[modules/shaper.git] / src / Config / Config_PointerMessage.h
index 4edb8c31e8f39dba3658f227a4ec95dda574ebf5..872c4365509effdc6d0ae624337860874c6f77e4 100644 (file)
 
 /*!
  * \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_ */