Salome HOME
fix conflict: ctest requires SUBDIRS, not ADD_SUBDIRECTORY directives
[tools/medcoupling.git] / doc / doxygen / fakesources / MEDCouplingMemArray.C
index 977a3a15bcc9dd7f206ae1e9f99fd344b941ae7a..76a5b7104bc0a88fd7c7291f9ef363b4f32529ab 100644 (file)
@@ -1,11 +1,26 @@
-// This file contains some code used for
-// 1) generation of documentation for inline methods of array classes
-// 2) grouping all methods into 3 lists" "Basic API", "Advanced API" and "Others..."
+// Copyright (C) 2013-2015  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 DataArray* classes
+// * groupping methods into "Basic API", "Advanced" and "Others..." sections
 
-/* class ParaMEDMEM::DataArray
- * @defgroup basic_api Basic API
- * @defgroup adv_api   Advanced API
- */
 
 namespace ParaMEDMEM
 {
@@ -116,8 +131,9 @@ void DataArrayDouble::updateTime() const {}
  *  \param [out] res - C array returning values of the \a tupleId-th tuple. The \a res
  *         must be allocated by the caller and be of size not less than \a
  *         this->getNumberOfComponents().
- *
+ *  \if ENABLE_EXAMPLES
  *  \ref py_mcdataarrayint_getTuple "Here is a Python example".
+ *  \endif
  */
 void DataArrayInt::getTuple(int tupleId, int *res) const {}
 
@@ -290,7 +306,6 @@ DataArrayDouble::back() const;
 DataArrayDouble::getIJSafe(int tupleId, int compoId) const;
 DataArrayDouble::setIJ(int tupleId, int compoId, double newVal);
 DataArrayDouble::setIJSilent(int tupleId, int compoId, double newVal);
-DataArrayDouble::useExternalArrayWithRWAccess(const double* array, int nbOfTuple, int nbOfCompo);
 DataArrayDouble::writeOnPlace(int id, double element0, const double* others, int sizeOfOthers);
 DataArrayDouble::checkNoNullValues() const;
 DataArrayDouble::getMinMaxPerComponent(double* bounds) const;
@@ -385,6 +400,7 @@ DataArrayDouble::getConstPointer() const;
 DataArrayDouble::begin() const;
 DataArrayDouble::end() const;
 DataArrayDouble::useArray(const double* array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
+DataArrayDouble::useExternalArrayWithRWAccess(const double* array, int nbOfTuple, int nbOfCompo);
 DataArrayDouble::insertAtTheEnd(InputIterator first, InputIterator last);
 DataArrayDouble::computeBBoxPerTuple(double epsilon=0.0) const;
 DataArrayDouble::computeTupleIdsNearTuples(const DataArrayDouble* other, double eps, DataArrayInt *& c, DataArrayInt *& cI) const;