diff --git a/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/AlignAndFocusPowder.h b/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/AlignAndFocusPowder.h index eeed812c9aba2c122650d0df3b8f28d9ea87d05a..258b8de0d1cc34550974a7dfea7d15a11e0eb8c9 100644 --- a/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/AlignAndFocusPowder.h +++ b/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/AlignAndFocusPowder.h @@ -58,15 +58,15 @@ namespace Mantid { public: /// Empty Constructor - AlignAndFocusPowder() : API::Algorithm() {} + AlignAndFocusPowder(); /// Destructor - virtual ~AlignAndFocusPowder() {} + virtual ~AlignAndFocusPowder(); /// Algorithm's name for identification overriding a virtual method - virtual const std::string name() const { return "AlignAndFocusPowder";} + virtual const std::string name() const; /// Algorithm's version for identification overriding a virtual method - virtual int version() const { return 1;} + virtual int version() const; /// Algorithm's category for identification overriding a virtual method - virtual const std::string category() const { return "Workflow\\Diffraction";} + virtual const std::string category() const; private: /// Sets documentation strings for this algorithm diff --git a/Code/Mantid/Framework/WorkflowAlgorithms/src/AlignAndFocusPowder.cpp b/Code/Mantid/Framework/WorkflowAlgorithms/src/AlignAndFocusPowder.cpp index 566942f45f4dbb01f18fc7725722df3abdc90b16..362f2cac5849c7a8f53d30218eacbdc1930b4714 100644 --- a/Code/Mantid/Framework/WorkflowAlgorithms/src/AlignAndFocusPowder.cpp +++ b/Code/Mantid/Framework/WorkflowAlgorithms/src/AlignAndFocusPowder.cpp @@ -54,6 +54,28 @@ namespace WorkflowAlgorithms // Register the class into the algorithm factory DECLARE_ALGORITHM(AlignAndFocusPowder) + AlignAndFocusPowder::AlignAndFocusPowder() : + API::Algorithm() + {} + + AlignAndFocusPowder::~AlignAndFocusPowder() + {} + + const std::string AlignAndFocusPowder::name() const + { + return "AlignAndFocusPowder"; + } + + int AlignAndFocusPowder::version() const + { + return 1; + } + + const std::string AlignAndFocusPowder::category() const + { + return "Workflow\\Diffraction"; + } + //---------------------------------------------------------------------------------------------- /** Sets documentation strings for this algorithm */