Skip to content
Snippets Groups Projects
Commit ee0f2fd0 authored by Jose Borreguero's avatar Jose Borreguero
Browse files

Refs #5827 Added empty def for constructor of base class

parent 59badff5
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ set ( SRC_FILES ...@@ -4,7 +4,7 @@ set ( SRC_FILES
src/ITransformScale.cpp src/ITransformScale.cpp
# src/TransformScaleFactory.cpp # src/TransformScaleFactory.cpp
src/LinearScale.cpp src/LinearScale.cpp
# src/LogarithmScale.cpp src/LogarithmScale.cpp
src/Algorithm.cpp src/Algorithm.cpp
src/AlgorithmFactory.cpp src/AlgorithmFactory.cpp
src/AlgorithmHasProperty.cpp src/AlgorithmHasProperty.cpp
...@@ -121,7 +121,7 @@ set ( INC_FILES ...@@ -121,7 +121,7 @@ set ( INC_FILES
inc/MantidAPI/ITransformScale.h inc/MantidAPI/ITransformScale.h
# inc/MantidAPI/TransformScaleFactory.h # inc/MantidAPI/TransformScaleFactory.h
inc/MantidAPI/LinearScale.h inc/MantidAPI/LinearScale.h
# inc/MantidAPI/LogarithmScale.h inc/MantidAPI/LogarithmScale.h
inc/MantidAPI/Algorithm.h inc/MantidAPI/Algorithm.h
inc/MantidAPI/AlgorithmFactory.h inc/MantidAPI/AlgorithmFactory.h
inc/MantidAPI/AlgorithmHasProperty.h inc/MantidAPI/AlgorithmHasProperty.h
......
...@@ -43,7 +43,7 @@ namespace API ...@@ -43,7 +43,7 @@ namespace API
class MANTID_API_DLL ITransformScale class MANTID_API_DLL ITransformScale
{ {
public: public:
ITransformScale(); ITransformScale() {};
/// Virtual destructor needed for an abstract class /// Virtual destructor needed for an abstract class
virtual ~ITransformScale() {}; virtual ~ITransformScale() {};
virtual const std::string name() const { return "ITransformScale"; } virtual const std::string name() const { return "ITransformScale"; }
......
...@@ -8,7 +8,7 @@ namespace Mantid ...@@ -8,7 +8,7 @@ namespace Mantid
{ {
namespace API namespace API
{ {
Kernel::Logger& g_log = Kernel::Logger::get("ITransformScale"); Kernel::Logger& ITransformScale::g_log = Kernel::Logger::get("ITransformScale");
} // namespace API } // namespace API
} // namespace Mantid } // namespace Mantid
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <stdexcept> #include <stdexcept>
#include "MantidAPI/LogarithmScale.h" #include "MantidAPI/LogarithmScale.h"
#include "MantidAPI/TransformScaleFactory.h" //#include "MantidAPI/TransformScaleFactory.h"
namespace Mantid namespace Mantid
{ {
......
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