Salome HOME
Synchronize adm files
[tools/medcoupling.git] / doc / doxygen / fakesources / MEDCouplingPointSet.C
old mode 100644 (file)
new mode 100755 (executable)
index b68734d..95bf780
@@ -1,3 +1,22 @@
+// 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, 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
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 // This file contains some code used only for
 // * generation of documentation for inline methods of MEDCouplingPointSet
 
@@ -18,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; }