Skip to content
Snippets Groups Projects
Commit b72f1d89 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

BUG: mantis 769 - output file parameters role set to output by default

parent 7e25ef4e
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ protected:
//FloatVectorImageType::Pointer m_Image;
ImageBaseType::Pointer m_Image;
std::string m_FileName;
ComplexImagePixelType m_ComplexPixelType;
ComplexImagePixelType m_ComplexPixelType;
typedef otb::ImageFileWriter<ComplexFloatImageType> ComplexFloatWriterType;
......
......@@ -75,7 +75,7 @@ protected:
{
// Initialize the String Parameter
m_StringParam= StringParameter::New();
m_Role= Role_Output;
}
......
......@@ -29,6 +29,7 @@ OutputImageParameter::OutputImageParameter()
{
this->SetName("Output Image");
this->SetKey("out");
this->SetRole(Role_Output);
}
......
......@@ -108,6 +108,7 @@ protected:
{
this->SetName("Output Vector Data");
this->SetKey("outvd");
this->SetRole(Role_Output);
}
/** Destructor */
......
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