summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/32003-issue_633_typename.cpp
blob: 33b947f1a6bca56c5715c5d319021aeb6f119a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
template < typename TImage >
class MorphologicalContourInterpolator :
	public ImageToImageFilter< TImage, TImage >
{
template < typename T >
friend class MorphologicalContourInterpolatorParallelInvoker;
friend class ::MultiLabelMeshPipeline;

public:
/** Standard class typedefs. */
typedef MorphologicalContourInterpolator Self;

protected:
MorphologicalContourInterpolator();
~MorphologicalContourInterpolator() {
}
typename TImage::PixelType m_Label;
int                        m_Axis;
bool                       m_HeuristicAlignment;

private:
MorphologicalContourInterpolator( const Self& ) ITK_DELETE_FUNCTION;
void
operator=( const Self& ) ITK_DELETE_FUNCTION;
};