Skip to content

Commit

Permalink
Refs #5827 added logger retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
jmborr committed Sep 3, 2012
1 parent 154a8bc commit 59aec9a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/Framework/API/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
set ( SRC_FILES
# src/GridDomain.cpp
# src/GridDomain1D.cpp
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 @@ -120,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
14 changes: 14 additions & 0 deletions Code/Mantid/Framework/API/src/ITransformScale.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------

#include "MantidAPI/ITransformScale.h"

namespace Mantid
{
namespace API
{
Kernel::Logger& g_log = Kernel::Logger::get("ITransformScale");

} // namespace API
} // namespace Mantid

0 comments on commit 59aec9a

Please sign in to comment.