Skip to content
Snippets Groups Projects
Commit d5e8cdc6 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

WRG: correct warnings in Envisat model

parent e2416994
No related branches found
No related tags found
No related merge requests found
......@@ -351,13 +351,19 @@ bool ossimEnvisatAsarModel::loadState (const ossimKeywordlist &kwl,
std::ostream& ossimEnvisatAsarModel::print(std::ostream& out) const
{
static const char MODULE[] = "ossimplugins::ossimEnvisatAsarModel::print";
// Capture the original flags.
std::ios_base::fmtflags f = out.flags();
out << setprecision(15) << setiosflags(ios::fixed)
<< "\nossimEnvisatAsarModel data members:\n"
<< "Nothing for now...";
<< "_pixel_spacing: " << _pixel_spacing << "\n"
<< "_n_srgr: " << _n_srgr << "\n";
ossimGeometricSarSensorModel::print(out);
// Reset flags.
out.setf(f);
return out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment