Skip to content

Commit

Permalink
Refs #5827 Added empty def for constructor of base class
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Sep 4, 2012
1 parent 59badff commit ee0f2fd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/API/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set ( SRC_FILES
src/ITransformScale.cpp
# src/TransformScaleFactory.cpp
src/LinearScale.cpp
# src/LogarithmScale.cpp
src/LogarithmScale.cpp
src/Algorithm.cpp
src/AlgorithmFactory.cpp
src/AlgorithmHasProperty.cpp
Expand Down Expand Up @@ -121,7 +121,7 @@ set ( INC_FILES
inc/MantidAPI/ITransformScale.h
# inc/MantidAPI/TransformScaleFactory.h
inc/MantidAPI/LinearScale.h
# inc/MantidAPI/LogarithmScale.h
inc/MantidAPI/LogarithmScale.h
inc/MantidAPI/Algorithm.h
inc/MantidAPI/AlgorithmFactory.h
inc/MantidAPI/AlgorithmHasProperty.h
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/inc/MantidAPI/ITransformScale.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace API
class MANTID_API_DLL ITransformScale
{
public:
ITransformScale();
ITransformScale() {};
/// Virtual destructor needed for an abstract class
virtual ~ITransformScale() {};
virtual const std::string name() const { return "ITransformScale"; }
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/src/ITransformScale.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Mantid
{
namespace API
{
Kernel::Logger& g_log = Kernel::Logger::get("ITransformScale");
Kernel::Logger& ITransformScale::g_log = Kernel::Logger::get("ITransformScale");

} // namespace API
} // namespace Mantid
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/src/LogarithmScale.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <stdexcept>

#include "MantidAPI/LogarithmScale.h"
#include "MantidAPI/TransformScaleFactory.h"
//#include "MantidAPI/TransformScaleFactory.h"

namespace Mantid
{
Expand Down

0 comments on commit ee0f2fd

Please sign in to comment.