9#ifndef NO_DEFAULT_METHODS_H
10#define NO_DEFAULT_METHODS_H
35#if __cplusplus>=201103L
36# define EPICS_NOT_COPYABLE(CLASS) private: CLASS(const CLASS&) = delete; CLASS& operator=(const CLASS&) = delete;
38# define EPICS_NOT_COPYABLE(CLASS) private: CLASS(const CLASS&); CLASS& operator=(const CLASS&);
41namespace epics {
namespace pvData {
54#if __cplusplus>=201103L
Base class for not allowing default methods.