Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
1d6b40b5
Commit
1d6b40b5
authored
17 years ago
by
Matt Clarke
Browse files
Options
Downloads
Patches
Plain Diff
Removed AlgorithmFactory.cpp. Refs #31
parent
590d43b1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/Kernel/src/AlgorithmFactory.cpp
+0
-28
0 additions, 28 deletions
Code/Mantid/Kernel/src/AlgorithmFactory.cpp
with
0 additions
and
28 deletions
Code/Mantid/Kernel/src/AlgorithmFactory.cpp
deleted
100644 → 0
+
0
−
28
View file @
590d43b1
#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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment