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

[A/FileIO/PetrelInterface] Forbid copy constr. & co.

cppcheck warning:
class 'PetrelInterface' does not have a copy constructor which is
recommended since the class contains a pointer to allocated memory.
parent b1301714
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,11 @@ public:
std::string &unique_model_name,
GeoLib::GEOObjects* obj);
PetrelInterface(PetrelInterface const& other) = delete;
PetrelInterface(PetrelInterface&& other) = delete;
PetrelInterface& operator=(PetrelInterface const&) = delete;
PetrelInterface& operator=(PetrelInterface&&) = delete;
private:
void readPetrelSurface (std::istream &in);
void readPetrelWellTrace (std::istream &in);
......
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