Compilation on Windows platform.

This commit is contained in:
rnv 2014-03-28 15:41:31 +04:00
parent 3e7b8f4975
commit df5faa3c63
3 changed files with 6 additions and 2 deletions

View File

@ -23,6 +23,7 @@
// Declarations needed for usage of DriverMED // Declarations needed for usage of DriverMED
#include "SMDSAbs_ElementType.hxx" #include "SMDSAbs_ElementType.hxx"
#include "SMESH_DriverMED.hxx"
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
@ -36,10 +37,10 @@ namespace DriverMED
/* /*
* Returns MED element geom type (MED::EGeometrieElement) by SMDS type * Returns MED element geom type (MED::EGeometrieElement) by SMDS type
*/ */
int GetMedGeoType( SMDSAbs_EntityType smdsType ); MESHDRIVERMED_EXPORT int GetMedGeoType( SMDSAbs_EntityType smdsType );
/* /*
* Returns SMDS element geom type by MED type (MED::EGeometrieElement) * Returns SMDS element geom type by MED type (MED::EGeometrieElement)
*/ */
SMDSAbs_EntityType GetSMDSType( int medType ); MESHDRIVERMED_EXPORT SMDSAbs_EntityType GetSMDSType( int medType );
} }

View File

@ -80,6 +80,7 @@ SET(_link_LIBRARIES
SMDS SMDS
SMESHDS SMESHDS
SMESHControls SMESHControls
MeshDriverMED
) )
# --- headers --- # --- headers ---

View File

@ -5244,6 +5244,7 @@ FaceQuadStruct::Side& FaceQuadStruct::Side::operator=(const Side& otherSide)
oSide->contacts[iOC].other_side = this; oSide->contacts[iOC].other_side = this;
} }
} }
return *this;
} }
//================================================================================ //================================================================================
@ -5290,6 +5291,7 @@ bool FaceQuadStruct::Side::Reverse(bool keepGrid)
grid->Reverse(); grid->Reverse();
} }
} }
return (bool)grid;
} }
//================================================================================ //================================================================================