OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimAdjustableParameterInfo.cpp File Reference
#include <sstream>
#include <algorithm>
#include <ossim/base/ossimAdjustableParameterInfo.h>
#include <ossim/base/ossimUnitTypeLut.h>
#include <ossim/base/ossimKeywordNames.h>
#include <ossim/base/ossimCommon.h>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &out, const ossimAdjustableParameterInfo &data)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  out,
const ossimAdjustableParameterInfo data 
)

Definition at line 23 of file ossimAdjustableParameterInfo.cpp.

References ossimLookUpTable::getEntryString(), ossimUnitTypeLut::instance(), ossimAdjustableParameterInfo::theCenter, ossimAdjustableParameterInfo::theDescription, ossimAdjustableParameterInfo::theLockFlag, ossimAdjustableParameterInfo::theParameter, ossimAdjustableParameterInfo::theSigma, and ossimAdjustableParameterInfo::theUnit.

24 {
25  out << "description: " << data.theDescription << std::endl
26  << "center: " << data.theCenter << std::endl
27  << "parameter: " << data.theParameter << std::endl
28  << "sigma: " << data.theSigma << std::endl
29  << "units: " << (ossimUnitTypeLut::instance()->getEntryString(data.theUnit))
30  << std::endl
31  << "locked: " << (data.theLockFlag?"true":"false") << std::endl;
32 
33  return out;
34 }
virtual ossimString getEntryString(ossim_int32 entry_number) const
static ossimUnitTypeLut * instance()
Returns the static instance of an ossimUnitTypeLut object.