Salome HOME
Issue #328: bug with hanging of the app on absent file sourcing fixed
[modules/shaper.git] / src / Config / Config_PointerMessage.h
index f108d3edeaa50bc7ad81f1071026fd6f5825484f..e745beb0e48dc3abc0eb83794edb8d4f86ac683c 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 /*
  * Config_PointerMessage.h
  *
 #ifndef PARTSET_MESSAGE_H_
 #define PARTSET_MESSAGE_H_
 
-#include <Config.h>
+#include <Config_def.h>
 #include <Events_Message.h>
 
 /*
  * A general class to pass pointers over the event loop.
  */
-class CONFIG_EXPORT Config_PointerMessage: public Events_Message
+class CONFIG_EXPORT Config_PointerMessage : public Events_Message
 {
-public:
+ public:
   Config_PointerMessage(const Events_ID theId, const void* theParent = 0);
   virtual ~Config_PointerMessage();
 
   void* pointer() const;
   void setPointer(void* pointer);
 
-private:
+ private:
   void* myPointer;
 };