From 16cb3f52af4912ad1304354175ebff3c5a5cffc2 Mon Sep 17 00:00:00 2001 From: ageay Date: Mon, 24 Jun 2013 15:26:02 +0000 Subject: [PATCH] - C++/Python API modif MEDLoader::setEpsilonForNodeComp -> MEDLoader::SetEpsilonForNodeComp - C++/Python API modif MEDLoader::setCompPolicyForCell -> MEDLoader::SetCompPolicyForCell - C++/Python API modif MEDLoader::setTooLongStrPolicy -> MEDLoader::SetTooLongStrPolicy --- src/MEDLoader/MEDLoader.cxx | 6 +++--- src/MEDLoader/MEDLoader.hxx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/MEDLoader/MEDLoader.cxx b/src/MEDLoader/MEDLoader.cxx index 5af7ca0c0..4126fb9d9 100644 --- a/src/MEDLoader/MEDLoader.cxx +++ b/src/MEDLoader/MEDLoader.cxx @@ -209,7 +209,7 @@ namespace MEDLoaderNS /*! * This method sets the epsilon value used for node comparison when trying to buid a profile for a field on node/cell on an already written mesh. */ -void MEDLoader::setEpsilonForNodeComp(double val) throw(INTERP_KERNEL::Exception) +void MEDLoader::SetEpsilonForNodeComp(double val) throw(INTERP_KERNEL::Exception) { _EPS_FOR_NODE_COMP=val; } @@ -217,7 +217,7 @@ void MEDLoader::setEpsilonForNodeComp(double val) throw(INTERP_KERNEL::Exception /*! * This method sets the policy comparison when trying to fit the already written mesh on a field. The semantic of the policy is specified in MEDCouplingUMesh::zipConnectivityTraducer. */ -void MEDLoader::setCompPolicyForCell(int val) throw(INTERP_KERNEL::Exception) +void MEDLoader::SetCompPolicyForCell(int val) throw(INTERP_KERNEL::Exception) { _COMP_FOR_CELL=val; } @@ -226,7 +226,7 @@ void MEDLoader::setCompPolicyForCell(int val) throw(INTERP_KERNEL::Exception) * This method set the behaviour of MEDLoader when a too long string is seen in datastructure before copy it in MED file. * By default (0) an exception is thrown. If equal to 1 a warning is emitted in std_err but no exception is thrown. */ -void MEDLoader::setTooLongStrPolicy(int val) throw(INTERP_KERNEL::Exception) +void MEDLoader::SetTooLongStrPolicy(int val) throw(INTERP_KERNEL::Exception) { _TOO_LONG_STR=val; } diff --git a/src/MEDLoader/MEDLoader.hxx b/src/MEDLoader/MEDLoader.hxx index dcd3c0e61..4d2077a1e 100644 --- a/src/MEDLoader/MEDLoader.hxx +++ b/src/MEDLoader/MEDLoader.hxx @@ -86,9 +86,9 @@ class MEDLOADER_EXPORT MEDLoader INTERP_KERNEL::NormalizedCellType _type; }; /// @endcond - static void setEpsilonForNodeComp(double val) throw(INTERP_KERNEL::Exception); - static void setCompPolicyForCell(int val) throw(INTERP_KERNEL::Exception); - static void setTooLongStrPolicy(int val) throw(INTERP_KERNEL::Exception); + static void SetEpsilonForNodeComp(double val) throw(INTERP_KERNEL::Exception); + static void SetCompPolicyForCell(int val) throw(INTERP_KERNEL::Exception); + static void SetTooLongStrPolicy(int val) throw(INTERP_KERNEL::Exception); static void CheckFileForRead(const char *fileName) throw(INTERP_KERNEL::Exception); static std::vector GetMeshNames(const char *fileName) throw(INTERP_KERNEL::Exception); static std::vector< std::vector< std::pair > > GetUMeshGlobalInfo(const char *fileName, const char *meshName, int &meshDim, int& spaceDim, int& numberOfNodes) throw(INTERP_KERNEL::Exception); -- 2.39.2