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

Go to the source code of this file.

Functions

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

Function Documentation

◆ operator<<()

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

Definition at line 18 of file ossimAdjustmentInfo.cpp.

References ossimAdjustmentInfo::getDescription(), ossimAdjustmentInfo::getNumberOfAdjustableParameters(), ossimAdjustmentInfo::theDirtyFlag, and ossimAdjustmentInfo::theParameterList.

19 {
20  ossim_int32 idx = 0;
21 
22  out << "Description: " << data.getDescription()
23  << "\nNumber of Params: " << data.theParameterList.size()
24  << "\nDirty flag: " << data.theDirtyFlag << std::endl;
25 
26  for(idx = 0; idx < (int)data.getNumberOfAdjustableParameters(); ++idx)
27  {
28  out << "Param " << idx << std::endl;
29  out << data.theParameterList[idx] << std::endl;
30  }
31 
32  return out;
33 }
ossim_uint32 getNumberOfAdjustableParameters() const
ossimString getDescription() const
std::vector< ossimAdjustableParameterInfo > theParameterList
int ossim_int32