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
27d0b81c
Commit
27d0b81c
authored
13 years ago
by
Julien Malik
Browse files
Options
Downloads
Plain Diff
MRG
parents
1d78ab93
559a8725
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Code/Core/otbWrapperApplication.cxx
+3
-3
3 additions, 3 deletions
Code/Core/otbWrapperApplication.cxx
Code/Core/otbWrapperChoiceParameter.h
+0
-1
0 additions, 1 deletion
Code/Core/otbWrapperChoiceParameter.h
Code/Core/otbWrapperParameter.h
+4
-4
4 additions, 4 deletions
Code/Core/otbWrapperParameter.h
with
7 additions
and
8 deletions
Code/Core/otbWrapperApplication.cxx
+
3
−
3
View file @
27d0b81c
...
...
@@ -30,10 +30,10 @@ Application::~Application()
{
}
otb
::
Wrapper
::
ParameterGroup
*
Application
::
GetParameterList
()
void
Application
::
Init
()
{
return
m_ParameterList
;
m_ParameterList
=
ParameterGroup
::
New
();
this
->
DoCreateParameters
();
}
void
Application
::
Init
()
...
...
This diff is collapsed.
Click to expand it.
Code/Core/otbWrapperChoiceParameter.h
+
0
−
1
View file @
27d0b81c
...
...
@@ -62,7 +62,6 @@ public:
/** Get the number of available choice */
unsigned
int
GetNbChoices
(
void
);
/** Set any value */
virtual
void
SetValue
(
unsigned
int
v
);
...
...
This diff is collapsed.
Click to expand it.
Code/Core/otbWrapperParameter.h
+
4
−
4
View file @
27d0b81c
...
...
@@ -139,10 +139,6 @@ protected:
virtual
~
Parameter
()
{}
private
:
Parameter
(
const
Parameter
&
);
//purposely not implemented
void
operator
=
(
const
Parameter
&
);
//purposely not implemented
/** Name of the parameter */
std
::
string
m_Name
;
...
...
@@ -158,6 +154,10 @@ private:
/** Default value behaviour */
DefaultValueMode
m_DefaultValueMode
;
private
:
Parameter
(
const
Parameter
&
);
//purposely not implemented
void
operator
=
(
const
Parameter
&
);
//purposely not implemented
};
// End class Parameter
}
// End namespace Wrapper
...
...
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