windows-nt/Source/XPSP1/NT/net/ias/services/inc/nocopy.h

46 lines
920 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1997, Microsoft Corp. All rights reserved.
//
// FILE
//
// nocopy.h
//
// SYNOPSIS
//
// This file describes the class NonCopyable.
//
// MODIFICATION HISTORY
//
// 10/19/1997 Original version.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef _NOCOPY_H_
#define _NOCOPY_H_
#if _MSC_VER >= 1000
#pragma once
#endif
///////////////////////////////////////////////////////////////////////////////
//
// CLASS
//
// NonCopyable
//
// DESCRIPTION
//
// Prevents instances of derived classes from being copied.
//
///////////////////////////////////////////////////////////////////////////////
class NonCopyable
{
protected:
NonCopyable() {}
private:
NonCopyable(const NonCopyable&);
NonCopyable& operator=(const NonCopyable&);
};
#endif // _NOCOPY_H_