Skip to content
Snippets Groups Projects
Commit 09c9138c authored by Julien Malik's avatar Julien Malik
Browse files

COMP: remove usage of internal types

parent 42a30bb3
No related branches found
No related tags found
No related merge requests found
...@@ -296,7 +296,7 @@ void Application::SetParameterString(std::string parameter, std::string value) ...@@ -296,7 +296,7 @@ void Application::SetParameterString(std::string parameter, std::string value)
} }
void Application::SetParameterOutputImage(std::string parameter, OutputImageParameter::VectorImageType* value) void Application::SetParameterOutputImage(std::string parameter, VectorImageType* value)
{ {
Parameter* param = GetParameterByKey(parameter); Parameter* param = GetParameterByKey(parameter);
...@@ -307,7 +307,7 @@ void Application::SetParameterOutputImage(std::string parameter, OutputImagePara ...@@ -307,7 +307,7 @@ void Application::SetParameterOutputImage(std::string parameter, OutputImagePara
} }
} }
void Application::SetParameterOutputVectorData(std::string parameter, OutputVectorDataParameter::VectorDataType* value) void Application::SetParameterOutputVectorData(std::string parameter, VectorDataType* value)
{ {
Parameter* param = GetParameterByKey(parameter); Parameter* param = GetParameterByKey(parameter);
......
...@@ -80,6 +80,12 @@ public: ...@@ -80,6 +80,12 @@ public:
* the I/O (intermediary results for example) */ * the I/O (intermediary results for example) */
void Execute(); void Execute();
/** Run the application, then writes all the output to disk
* if they have an associated filename.
* This is a helper function for wrappers without pipeline support.
*/
void ExecuteAndWriteOutput();
/* Get the internal application parameters /* Get the internal application parameters
* *
* WARNING: this method may disappear from the API */ * WARNING: this method may disappear from the API */
......
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