Skip to content
Snippets Groups Projects
Commit ebd6cb9b authored by Simon Heybrock's avatar Simon Heybrock
Browse files

Re #12917 Made IMDWorkspace copy constructor protected.

parent 3548a5da
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,6 @@ enum MDNormalization {
class MANTID_API_DLL IMDWorkspace : public Workspace, public API::MDGeometry {
public:
IMDWorkspace();
IMDWorkspace(const IMDWorkspace &other);
virtual ~IMDWorkspace();
/// Get the number of points associated with the workspace.
......@@ -134,6 +133,7 @@ public:
virtual MDNormalization displayNormalization() const;
protected:
IMDWorkspace(const IMDWorkspace &other);
virtual const std::string toString() const;
};
......
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