mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use new tools in Visual Studio to help cleaning up includes and remove redundant includes.
8 lines
275 B
C
8 lines
275 B
C
#pragma once
|
|
|
|
// 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& )
|