Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1676,13 +1676,13 @@ \section{Accessing Members}
\begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{cpp}
template <typename TInputImage, typename TOutputImage>
void
BinaryContourImageFilter<InputImage, TOutputImage>::PrintSelf(
InterpolateImageFilter<InputImage, TOutputImage>::PrintSelf(
std::ostream & os,
Indent indent) const
{
Superclass::PrintSelf(os, indent);

os << indent << "FullyConnected: " << m_FullyConnected << std::endl;
os << indent << "Distance: " << m_Distance << std::endl;
...
}
\end{minted}
Expand All @@ -1694,13 +1694,13 @@ \section{Accessing Members}
\begin{minted}[baselinestretch=1,fontsize=\footnotesize,linenos=false,bgcolor=ltgray]{cpp}
template <typename TInputImage, typename TOutputImage>
void
BinaryContourImageFilter<TInputImage, TOutputImage>::PrintSelf(
InterpolateImageFilter<TInputImage, TOutputImage>::PrintSelf(
std::ostream & os,
Indent indent) const
{
Superclass::PrintSelf(os, indent);

os << indent << "FullyConnected: " << this->m_FullyConnected << std::endl;
os << indent << "Distance: " << m_Distance << std::endl;
...
}
\end{minted}
Expand Down