]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
include of Python.h must be the last one and generally
authorrahuel <rahuel@opencascade.com>
Thu, 9 Feb 2006 15:54:18 +0000 (15:54 +0000)
committerrahuel <rahuel@opencascade.com>
Thu, 9 Feb 2006 15:54:18 +0000 (15:54 +0000)
some system includes must be added before as :
#include <sstream>
#include <time.h>
#include <sys/time.h>
#include <stat.h>

src/LifeCycleCORBA/Launchers.cxx
src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx
src/MPIContainer/MPIContainer_i.cxx

index 3400d4474cbc538dcde1293c98d527e35bb8a48d..048c32c818c76a3a2408a5762f1df562d145b867 100644 (file)
 //
 // See http://www.salome-platform.org/
 //
-#include <Launchers.hxx>
+
+#include <time.h>
+#include <sys/time.h>
+
 #include "utilities.h"
 
+#include <Launchers.hxx>
+
 using namespace std;
 
 static int Launchers_IsLoaded = 0;
index 439d10fb5e19a8246d8c256ed198a2b257908ff9..7235a74a0221273d87bb16c87533cdfde7dc4470 100644 (file)
 #include <sstream>
 #include <iomanip>
 
+#include <time.h>
+#include <sys/time.h>
+
 #include "OpUtil.hxx"
 #include "utilities.h"
-#include "Launchers.hxx"
 
 #include <ServiceUnreachable.hxx>
 
@@ -47,6 +49,8 @@
 #include "SALOME_ContainerManager.hxx"
 #include "SALOME_Component_i.hxx"
 #include "SALOME_NamingService.hxx"
+#include "Launchers.hxx"
+
 using namespace std;
 
 IncompatibleComponent::IncompatibleComponent( void ):
index dfeb178e13579d792ccfb0b10b30e9d79103abae..1acd943e3338a9650d4d51486e07460db7df829b 100644 (file)
@@ -33,6 +33,8 @@
 #include "Utils_SINGLETON.hxx"
 #include "OpUtil.hxx"
 #include "utilities.h"
+#include <time.h>
+#include <sys/time.h>
 #include <pthread.h>  // must be before Python.h !
 #include <Python.h>
 #include "Container_init_python.hxx"