Skip to content

Commit

Permalink
Refs #5827 add little change to g_log
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Sep 3, 2012
1 parent 0c4e9c5 commit 7aef031
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Code/Mantid/Framework/API/inc/MantidAPI/ITransformScale.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,15 @@ namespace API
class MANTID_API_DLL ITransformScale
{
public:
ITransformScale();
/// Virtual destructor needed for an abstract class
virtual ~ITransformScale() {};
virtual const std::string name() const { return "ITransformScale"; }
/// The scaling transformation. Define in derived classes
virtual void transform( std::vector<double> &gd ) = 0;

protected:
static Mantid::Kernel::Logger& g_log;
static Kernel::Logger& g_log;
}; // class ITransformScale

/// typedef for a shared pointer
Expand Down

0 comments on commit 7aef031

Please sign in to comment.