Skip to content

Commit

Permalink
DOC: Document itk::Indent class methods in header file only
Browse files Browse the repository at this point in the history
Document `itk::Indent` class methods in header file only: Doxygen picks
the method documentation from the header files, and leaves the method
documentation empty if it does not find it there. So remove the method
documentation from the implementation file.
  • Loading branch information
jhlegarreta authored and dzenanz committed Aug 31, 2023
1 parent 83c1c48 commit 3eb8fd7
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Modules/Core/Common/src/itkIndent.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,12 @@ namespace itk
{
static constexpr char blanks[ITK_NUMBER_OF_BLANKS + 1] = " ";

/**
* Instance creation.
*/
Indent *
Indent::New()
{
return new Self;
}

/**
* Determine the next indentation level. Keep indenting by two until the
* max of forty.
*/
Indent
Indent::GetNextIndent() const
{
Expand All @@ -59,9 +52,6 @@ Indent::GetNextIndent() const
return indent;
}

/**
* Print out the indentation. Basically output a bunch of spaces.
*/
std::ostream &
operator<<(std::ostream & os, const Indent & ind)
{
Expand Down

0 comments on commit 3eb8fd7

Please sign in to comment.