From 1d6b40b52a401ae2e5264cf9798b513a30f016ac Mon Sep 17 00:00:00 2001
From: Matt Clarke <matt.clarke@stfc.ac.uk>
Date: Thu, 8 Nov 2007 08:57:45 +0000
Subject: [PATCH] Removed AlgorithmFactory.cpp. Refs #31

---
 Code/Mantid/Kernel/src/AlgorithmFactory.cpp | 28 ---------------------
 1 file changed, 28 deletions(-)
 delete mode 100644 Code/Mantid/Kernel/src/AlgorithmFactory.cpp

diff --git a/Code/Mantid/Kernel/src/AlgorithmFactory.cpp b/Code/Mantid/Kernel/src/AlgorithmFactory.cpp
deleted file mode 100644
index 3b6f2a3d769..00000000000
--- a/Code/Mantid/Kernel/src/AlgorithmFactory.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "../inc/AlgorithmFactory.h"
-
-namespace Mantid
-{
-namespace Kernel
-{
-	Logger& AlgorithmFactory::g_log = Logger::get("AlgorithmFactory");
-
-	// Initialise the instance pointer to zero
-	AlgorithmFactory* AlgorithmFactory::m_instance = 0;
-
-	AlgorithmFactory::AlgorithmFactory()
-	{
-	}
-
-	AlgorithmFactory::~AlgorithmFactory()
-	{
-	  delete m_instance;
-	}
-
-	AlgorithmFactory* AlgorithmFactory::Instance()
-	{
-	  if (!m_instance) m_instance=new AlgorithmFactory;
-	  return m_instance;
-	}
-
-} // namespace Kernel
-} // namespace Mantid
-- 
GitLab