Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
09c9138c
Commit
09c9138c
authored
13 years ago
by
Julien Malik
Browse files
Options
Downloads
Patches
Plain Diff
COMP: remove usage of internal types
parent
42a30bb3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Core/otbWrapperApplication.cxx
+2
-2
2 additions, 2 deletions
Code/Core/otbWrapperApplication.cxx
Code/Core/otbWrapperApplication.h
+6
-0
6 additions, 0 deletions
Code/Core/otbWrapperApplication.h
with
8 additions
and
2 deletions
Code/Core/otbWrapperApplication.cxx
+
2
−
2
View file @
09c9138c
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Code/Core/otbWrapperApplication.h
+
6
−
0
View file @
09c9138c
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment