00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects Software Inc 00008 * 123 Front Street West, Suite 1401 00009 * Toronto, Ontario 00010 * Canada M5J 2M2 00011 * 416-504-9876 00012 * 00013 * NAME: UT_NonCopyable (UT Library, C++) 00014 * 00015 * COMMENTS: Privately inherit UT_NonCopyable to deny class copying 00016 * 00017 */ 00018 00019 #ifndef __UT_NONCOPYABLE_H_INCLUDED__ 00020 #define __UT_NONCOPYABLE_H_INCLUDED__ 00021 00022 #include <boost/utility.hpp> 00023 00024 /// Inherit from this class to deny copying 00025 typedef boost::noncopyable UT_NonCopyable; 00026 00027 #endif // __UT_NONCOPYABLE_H_INCLUDED__
1.5.9