Salome HOME
Revert "First phase of SketchSolver refactoring"
[modules/shaper.git] / src / Config / Config_PointerMessage.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * Config_PointerMessage.h
5  *
6  *  Created on: Mar 21, 2014
7  *      Author: sbh
8  */
9
10 #ifndef PARTSET_MESSAGE_H_
11 #define PARTSET_MESSAGE_H_
12
13 #include <Config_def.h>
14 #include <Events_Message.h>
15
16 /*!
17  * \class Config_PointerMessage
18  * \ingroup Config
19  * \brief A general class to pass pointers over the event loop.
20  */
21 class CONFIG_EXPORT Config_PointerMessage : public Events_Message
22 {
23  public:
24   /// Constructor
25   Config_PointerMessage(const Events_ID theId, const void* theParent = 0);
26   virtual ~Config_PointerMessage();
27
28   /// Returns pointer to an object
29   void* pointer() const;
30   /// Sets pointer to an object
31   void setPointer(void* pointer);
32
33  private:
34   void* myPointer; ///< Pointer to an object
35 };
36
37 #endif /* PARTSET_MESSAGE_H_ */