You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
/*****************************************************************************/
|
|
// Copyright 2012 Adobe Systems Incorporated
|
|
// All Rights Reserved.
|
|
//
|
|
// NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
// accordance with the terms of the Adobe license agreement accompanying it.
|
|
/*****************************************************************************/
|
|
|
|
/* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_uncopyable.h#1 $ */
|
|
/* $DateTime: 2012/09/05 12:31:51 $ */
|
|
/* $Change: 847652 $ */
|
|
/* $Author: tknoll $ */
|
|
|
|
/*****************************************************************************/
|
|
|
|
#ifndef __dng_uncopyable__
|
|
#define __dng_uncopyable__
|
|
|
|
/*****************************************************************************/
|
|
|
|
// Virtual base class to prevent object copies.
|
|
|
|
class dng_uncopyable
|
|
{
|
|
|
|
protected:
|
|
|
|
dng_uncopyable ()
|
|
{
|
|
}
|
|
|
|
~dng_uncopyable ()
|
|
{
|
|
}
|
|
|
|
private:
|
|
|
|
dng_uncopyable (const dng_uncopyable &);
|
|
|
|
dng_uncopyable & operator= (const dng_uncopyable &);
|
|
|
|
};
|
|
|
|
/*****************************************************************************/
|
|
|
|
#endif // __dng_uncopyable__
|
|
|
|
/*****************************************************************************/
|