home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 May / Game.EXE_05_2002.iso / Alawar / Lib / Nocopy.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-24  |  204 b   |  15 lines

  1. #ifndef __NOCOPY_H__
  2. #define __NOCOPY_H__
  3.  
  4. class Nocopy
  5. {
  6.     const Nocopy & operator=(const Nocopy & );
  7.     Nocopy(const Nocopy & );
  8. public:
  9.     Nocopy()
  10.     {}
  11.     ~Nocopy()
  12.     {}
  13. };
  14.  
  15. #endif //__NOCOPY_H__