ResInsight/Fwk/AppFwk/cafProjectDataModel/cafPdmCore/cafPdmBase.h
Magne Sjaastad 58149cbdb9 Copied in RPM/Fwk/AppFwk
Commented out use of stipple line, as VizFwk is not update yet
2015-07-29 14:19:43 +02:00

13 lines
334 B
C

#pragma once
// Brings in size_t and definition of NULL
#include <cstddef>
// Macro to disable the copy constructor and assignment operator
// Should be used in the private section of a class
#define PDM_DISABLE_COPY_AND_ASSIGN(CLASS_NAME) \
CLASS_NAME(const CLASS_NAME&); \
void operator=(const CLASS_NAME&)