Skip to content

Commit

Permalink
Refs #5827 set virtual tranform to zero
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Aug 31, 2012
1 parent 06d9668 commit 63fbada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/API/inc/MantidAPI/ITransformScale.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ class MANTID_API_DLL ITransformScale
{
public:
/// Virtual destructor
virtual ~ITransformScale() {}
virtual ~ITransformScale();
virtual const std::string name() const { return "ITransformScale"; }
/// The scaling transformation. Override with method of derived classes
virtual void transform( std::vector<double> &gd );
virtual void transform( std::vector<double> &gd ) = 0;

protected:
static Kernel::Logger& g_log;
Expand Down

0 comments on commit 63fbada

Please sign in to comment.