Skip to content
Snippets Groups Projects
Commit 80c8ca89 authored by Julien Michel's avatar Julien Michel
Browse files

WRG: Fixing all remainings overloaded-virtual

parent fca7ba69
No related branches found
No related tags found
No related merge requests found
Showing
with 21 additions and 1 deletion
......@@ -99,6 +99,7 @@ protected:
/** Make Output */
virtual DataObjectPointerType MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
virtual void PrintSelf(std::ostream& os, itk::Indent indent) const;
......
......@@ -105,6 +105,7 @@ protected:
/** Make Output */
DataObjectPointerType MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
private:
LabelMapWithClassLabelToLabeledSampleListFilter(const Self&); //purposely not implemented
......
......@@ -87,6 +87,7 @@ public:
const AttributesMapObjectType* GetMaximumOutput() const;
virtual DataObjectPointerType MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
protected:
MinMaxAttributesLabelMapFilter();
......
......@@ -77,6 +77,7 @@ public:
* multiple outputs of different types, then that class must provide
* an implementation of MakeOutput(). */
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
/** Graft the specified DataObject onto this ProcessObject's output.
* This method grabs a handle to the specified DataObject's path
......
......@@ -122,6 +122,7 @@ public:
* multiple outputs of different types, then that class must provide
* an implementation of MakeOutput(). */
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
protected:
PointSetSource();
......
......@@ -149,6 +149,7 @@ public:
/** Make a DataObject of the correct type to be used as the specified
* output. */
itk::DataObject::Pointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
void AllocateOutputs();
void GenerateOutputInformation();
......
......@@ -107,7 +107,8 @@ protected:
/** Standard itk::ProcessObject subclass method. */
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
void PrintSelf(std::ostream& os, itk::Indent indent) const;
/** This method causes the filter to generate its output. */
......
......@@ -102,6 +102,7 @@ public:
* output.
*/
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
/** Pass the input through unmodified. Do this by Grafting in the
* AllocateOutputs method.
......
......@@ -122,6 +122,7 @@ public:
* output.
*/
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
/** Pass the input through unmodified. Do this by Grafting in the
* AllocateOutputs method.
......
......@@ -117,6 +117,8 @@ protected:
virtual ~PathListToHistogramGenerator() {}
virtual void GenerateData();
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType);
using Superclass::MakeOutput;
void PrintSelf(std::ostream& os, itk::Indent indent) const;
private:
......
......@@ -96,6 +96,8 @@ public:
// Build the outputs
typedef itk::DataObject::Pointer DataObjectPointer;
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
//virtual void Update();
/** Accessors */
......
......@@ -127,6 +127,7 @@ protected:
/** Make Output */
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
ListSampleToBalancedListSampleFilter();
virtual ~ListSampleToBalancedListSampleFilter() {}
......
......@@ -151,6 +151,7 @@ protected:
void GenerateData();
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
void PrintSelf(std::ostream& os, itk::Indent indent) const;
......
......@@ -114,6 +114,7 @@ protected:
void GenerateData();
void PrintSelf(std::ostream& os, itk::Indent indent) const;
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
private:
HistogramSizeType m_Sizes;
......
......@@ -130,6 +130,7 @@ public:
/** Make a DataObject of the correct type to be used as the specified
* output. */
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
/** Pass the input through unmodified. Do this by Grafting in the
* AllocateOutputs method.
......
......@@ -169,6 +169,7 @@ public:
* output.
*/
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
/** Pass the input through unmodified. Do this by Grafting in the
* AllocateOutputs method.
......
......@@ -110,6 +110,7 @@ public:
/** Make a DataObject of the correct type to be used as the specified
* output. */
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx);
using Superclass::MakeOutput;
/** Pass the input through unmodified. Do this by Grafting in the
* AllocateOutputs method.
......
......@@ -122,6 +122,7 @@ class ITK_EXPORT SailModel : public SimulationStep2Base
void PrintSelf(std::ostream& os, itk::Indent indent) const;
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType);
using Superclass::MakeOutput;
/** Compute Leaf Angle Distribution */
void Calc_LIDF(const double a, VectorType &lidf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment