Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
220fe7bc
Commit
220fe7bc
authored
Feb 11, 2016
by
Stéphane Albert
Browse files
ENH: Added GDALOverviewsBuilder::CountResolutions() alias.
parent
a3cdb66f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h
View file @
220fe7bc
...
...
@@ -98,6 +98,9 @@ public:
unsigned
int
CountResolutions
(
unsigned
int
factor
,
unsigned
int
n
=
0
)
const
;
unsigned
int
CountResolutions
(
unsigned
int
n
=
0
)
const
;
void
ListResolutions
(
SizeVector
&
,
unsigned
int
factor
,
unsigned
int
count
);
void
ListResolutions
(
SizeVector
&
);
...
...
Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx
View file @
220fe7bc
...
...
@@ -126,6 +126,14 @@ GDALOverviewsBuilder
return
count
;
}
/***************************************************************************/
unsigned
int
GDALOverviewsBuilder
::
CountResolutions
(
unsigned
int
n
)
const
{
return
CountResolutions
(
m_ResolutionFactor
,
n
);
}
/***************************************************************************/
void
GDALOverviewsBuilder
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment