jigdo API
Last update by Admin on 2010-05-23
util/nocopy.hh
Go to the documentation of this file.00001 /* $Id: nocopy.hh,v 1.1 2003/05/17 15:37:35 richard Exp $ -*- C++ -*- 00002 __ _ 00003 |_) /| Copyright (C) 2003 | richard@ 00004 | \/¯| Richard Atterer | atterer.net 00005 ¯ '` ¯ 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License, version 2. See 00008 the file COPYING for details. 00009 00010 */ 00011 00015 #ifndef NOCOPY_HH 00016 #define NOCOPY_HH 00017 00022 class NoCopy { 00023 protected: 00024 NoCopy() { } 00025 ~NoCopy() { } 00026 private: 00027 NoCopy(const NoCopy&); 00028 const NoCopy& operator=(const NoCopy&); 00029 }; 00030 00031 #endif
Generated on Tue Sep 23 14:27:42 2008 for jigdo by
