From af7fb1210a0898d630303346d11f77947bcbd261 Mon Sep 17 00:00:00 2001 From: ageay Date: Tue, 26 Feb 2013 09:54:51 +0000 Subject: [PATCH] Some useful doc --- src/MEDLoader/MEDFileField.cxx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/MEDLoader/MEDFileField.cxx b/src/MEDLoader/MEDFileField.cxx index 874b10245..e0bb931f4 100644 --- a/src/MEDLoader/MEDFileField.cxx +++ b/src/MEDLoader/MEDFileField.cxx @@ -5011,6 +5011,9 @@ MEDFileFieldMultiTS *MEDFileFieldMultiTS::deepCpy() const throw(INTERP_KERNEL::E return ret.retn(); } +/*! + * \return a new allocated object that the caller should deal with. + */ MEDFileField1TS *MEDFileFieldMultiTS::getTimeStepAtPos(int pos) const throw(INTERP_KERNEL::Exception) { const MEDFileField1TSWithoutSDA *item=_content->getTimeStepAtPos2(pos); @@ -5019,12 +5022,18 @@ MEDFileField1TS *MEDFileFieldMultiTS::getTimeStepAtPos(int pos) const throw(INTE return ret.retn(); } +/*! + * \return a new allocated object that the caller should deal with. + */ MEDFileField1TS *MEDFileFieldMultiTS::getTimeStep(int iteration, int order) const throw(INTERP_KERNEL::Exception) { int pos=getPosOfTimeStep(iteration,order); return getTimeStepAtPos(pos); } +/*! + * \return a new allocated object that the caller should deal with. + */ MEDFileField1TS *MEDFileFieldMultiTS::getTimeStepGivenTime(double time, double eps) const throw(INTERP_KERNEL::Exception) { int pos=getPosGivenTime(time,eps); -- 2.39.2