]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
- C++/Python API modif MEDLoader::setEpsilonForNodeComp -> MEDLoader::SetEpsilonForNo...
authorageay <ageay>
Mon, 24 Jun 2013 15:26:02 +0000 (15:26 +0000)
committerageay <ageay>
Mon, 24 Jun 2013 15:26:02 +0000 (15:26 +0000)
- C++/Python API modif MEDLoader::setCompPolicyForCell -> MEDLoader::SetCompPolicyForCell
- C++/Python API modif MEDLoader::setTooLongStrPolicy -> MEDLoader::SetTooLongStrPolicy

src/MEDLoader/MEDLoader.cxx
src/MEDLoader/MEDLoader.hxx

index 5af7ca0c0c6661763181909a35f6ac1cb381edcb..4126fb9d9edb16c6c2bd56aff200576b5ab96b22 100644 (file)
@@ -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;
 }
index dcd3c0e618fa39b5e6ca4dd4c37bd1d526954889..4d2077a1e949f9b7f518c3dc0091e5b4385739d1 100644 (file)
@@ -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<std::string> GetMeshNames(const char *fileName) throw(INTERP_KERNEL::Exception);
   static std::vector< std::vector< std::pair<INTERP_KERNEL::NormalizedCellType,int> > > GetUMeshGlobalInfo(const char *fileName, const char *meshName, int &meshDim, int& spaceDim, int& numberOfNodes) throw(INTERP_KERNEL::Exception);