Skip to content
Snippets Groups Projects
Commit 59c7db8e authored by Tom Fischer's avatar Tom Fischer
Browse files

[GL] Surface: del. default implemented methods.

I.e., delete move constr., assignment and move assignment operator.
parent 8672f59e
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,10 @@ public: ...@@ -39,6 +39,10 @@ public:
Surface(Surface const& src); Surface(Surface const& src);
~Surface(); ~Surface();
Surface(Surface && src) = delete;
Surface& operator=(Surface const& src) = delete;
Surface& operator=(Surface && src) = delete;
/// return a geometry type /// return a geometry type
GEOTYPE getGeoType() const override { return GEOTYPE::SURFACE; } GEOTYPE getGeoType() const override { return GEOTYPE::SURFACE; }
/** /**
......
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