Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[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  * A general class to pass pointers over the event loop.
18  */
19 class CONFIG_EXPORT Config_PointerMessage : public Events_Message
20 {
21  public:
22   Config_PointerMessage(const Events_ID theId, const void* theParent = 0);
23   virtual ~Config_PointerMessage();
24
25   void* pointer() const;
26   void setPointer(void* pointer);
27
28  private:
29   void* myPointer;
30 };
31
32 #endif /* PARTSET_MESSAGE_H_ */