]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
To make reusable some C++ idioms that are implemented in MEDWrapper of MED module
authorapo <apo@opencascade.com>
Thu, 21 Jul 2005 12:51:23 +0000 (12:51 +0000)
committerapo <apo@opencascade.com>
Thu, 21 Jul 2005 12:51:23 +0000 (12:51 +0000)
src/VISUGUI/Makefile.in
src/VISU_I/Makefile.in
src/VISU_I/VISU_CorbaMedConvertor.cxx

index 3551f99f715cf32ba6e03aedf6b4a933bdff4aec..cc08b66788b2529b208ccb0b32a705b54d5e7001 100644 (file)
@@ -108,7 +108,9 @@ LIB_SERVER_IDL =
 
 CPPFLAGS +=  -ftemplate-depth-32 $(QT_INCLUDES) $(VTK_INCLUDES) $(OCC_INCLUDES) \
        $(PYTHON_INCLUDES) $(HDF5_INCLUDES) $(QWT_INCLUDES) \
-       -I${KERNEL_ROOT_DIR}/include/salome  $(BOOST_CPPFLAGS)
+       -I${KERNEL_ROOT_DIR}/include/salome \
+       -I${MED_ROOT_DIR}/include/salome \
+       $(BOOST_CPPFLAGS)
 CXXFLAGS +=  -ftemplate-depth-32 $(OCC_CXXFLAGS) \
        -I${KERNEL_ROOT_DIR}/include/salome -I${GUI_ROOT_DIR}/include/salome
 
index 330d5468e8cc6e122d06a238e5dba347d80562c1..bb527ff98cc9d264080c1e93b683e6ce44db6bad 100644 (file)
@@ -54,12 +54,15 @@ EXPORT_HEADERS = VISUConfig.hh VISU_Gen_i.hh \
 # additionnal information to compil and link file
 CPPFLAGS += -ftemplate-depth-32 $(QT_INCLUDES) $(PYTHON_INCLUDES) $(OCC_INCLUDES) $(VTK_INCLUDES) \
        $(HDF5_INCLUDES) $(QWT_INCLUDES) $(BOOST_CPPFLAGS)\
-       -I${KERNEL_ROOT_DIR}/include/salome -I${GUI_ROOT_DIR}/include/salome
+       -I${KERNEL_ROOT_DIR}/include/salome \
+       -I${MED_ROOT_DIR}/include/salome \
+       -I${GUI_ROOT_DIR}/include/salome
 
 LDFLAGS  += $(PYTHON_LIBS) $(QT_MT_LIBS) $(VTK_LIBS) $(QWT_LIBS) -lSalomeNS -lTOOLSDS \
        -lSalomeContainer -lOpUtil -lSalomeApp -lVTKViewer -lSVTK -lSPlot2d -lSalomeHDFPersist \
        -lSalomeGenericObj -lVisuConvertor -lVisuPipeLine -lVisuObject -lVISUGUITOOLS \
-       -L${KERNEL_ROOT_DIR}/lib/salome -L${GUI_ROOT_DIR}/lib/salome -lEvent
+       -L${KERNEL_ROOT_DIR}/lib/salome \
+       -L${GUI_ROOT_DIR}/lib/salome -lEvent
 
 LIBS+=  -lPlot2d -L${KERNEL_ROOT_DIR}/lib/salome
 
index 57b5df8b9c222e5cef8640b0724478badc79b9dd..49431184c2c643b8c8a0f0e9185f3fbca8437f82 100644 (file)
@@ -904,7 +904,7 @@ VISU_MEDConvertor::LoadPoints(VISU::PCMesh theMesh,
 
   SALOME_MED::MESH_var& aMedMesh = theMesh->myMesh;
   int iNumElemEnd = aMedMesh->getNumberOfNodes();
-  TMeshImpl::TPointsCoord& aPointsCoord = theMesh->myPointsCoord;
+  TPointsCoord& aPointsCoord = theMesh->myPointsCoord;
 
   if(MYDEBUG) MESSAGE("LoadPoints - iNumElemEnd = "<<iNumElemEnd);