1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 * Config_PointerMessage.h
6 * Created on: Mar 21, 2014
10 #ifndef PARTSET_MESSAGE_H_
11 #define PARTSET_MESSAGE_H_
13 #include <Config_def.h>
14 #include <Events_Message.h>
17 * A general class to pass pointers over the event loop.
19 class CONFIG_EXPORT Config_PointerMessage : public Events_Message
22 Config_PointerMessage(const Events_ID theId, const void* theParent = 0);
23 virtual ~Config_PointerMessage();
25 void* pointer() const;
26 void setPointer(void* pointer);
32 #endif /* PARTSET_MESSAGE_H_ */