Project

General

Profile

ct_itemdrawable.patch

Bourge Florentin, 10/25/2016 05:44 PM

View differences:

ct_grid3d.h (working copy)
232 232
     */
233 233
    void computeMinMax();
234 234

  
235
    /*!
236
     * \brief Show min and max values into the log window
237
     */
238
    void printMinMax(const QString &LabelText);
239

  
235 240
    /**
236 241
      * \brief Gives the NA value
237 242
      * \return Valeur NA value
ct_grid3d.hpp (working copy)
380 380
    }
381 381
}
382 382

  
383
template< typename DataT>
384
void CT_Grid3D<DataT>::printMinMax(const QString &LabelText){
385
PS_LOG->addInfoMessage(LogInterface::reader, LabelText + "  : Extremum [" + QString::number(_dataMin) + ";" + QString::number(_dataMax) +"] ");
386
}
383 387

  
384 388

  
389

  
385 390
template< typename DataT>
386 391
QString CT_Grid3D<DataT>::getType() const
387 392
{