Salome HOME
Synchronize adm files
[tools/medcoupling.git] / doc / doxygen / fakesources / MEDCouplingPointSet.C
old mode 100644 (file)
new mode 100755 (executable)
index d901b17..95bf780
@@ -1,9 +1,9 @@
-// Copyright (C) 2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2013-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -37,10 +37,16 @@ namespace ParaMEDMEM
    */
   void MEDCouplingPointSet::tryToShareSameCoordsPermute(const MEDCouplingPointSet& other, double epsilon) throw(INTERP_KERNEL::Exception) {}
 
-  //! This method returns directly the array in \a this \b without incrementing ref counter. The pointer is dealed by the mesh. The caller should not deal (decrRef) with this pointer
+  /*!
+   * Returns a const pointer to the node coordinates array of \a this mesh \b without
+   * incrementing its reference counter, thus there is no need to decrRef() it by the caller.
+   */
   const DataArrayDouble *MEDCouplingPointSet::getCoords() const { return _coords; }
 
-  //! This method returns directly the array in \a this \b without incrementing ref counter. The pointer is dealed by the mesh. The caller should not deal (decrRef) with this pointer
+  /*!
+   * Returns a pointer to the node coordinates array of \a this mesh \b without
+   * incrementing its reference counter, thus there is no need to decrRef() it by the caller.
+   */
   DataArrayDouble *MEDCouplingPointSet::getCoords() { return _coords; }