From 8a1a92d3cd9f62451c1acfc4cc91c5fe46b93dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Schl=C3=BCns?= Date: Mon, 11 Jun 2001 09:23:14 +0000 Subject: [PATCH] #85529# ren interface --- framework/inc/threadhelp/inoncopyable.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/framework/inc/threadhelp/inoncopyable.h b/framework/inc/threadhelp/inoncopyable.h index 85e0b2800b53..4b99e2740846 100644 --- a/framework/inc/threadhelp/inoncopyable.h +++ b/framework/inc/threadhelp/inoncopyable.h @@ -2,9 +2,9 @@ * * $RCSfile: inoncopyable.h,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: as $ $Date: 2001-03-29 13:17:11 $ + * last change: $Author: as $ $Date: 2001-06-11 10:23:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -93,19 +93,18 @@ namespace framework{ all possiblities to copy or assign one object to another one! We declare neccessary functions private to do so. *//*-*************************************************************************************************************/ - -class INonCopyAble +class INonCopyable { public: - INonCopyAble() {} + INonCopyable() {} private: - INonCopyAble ( const INonCopyAble& rCopy ); - INonCopyAble& operator= ( const INonCopyAble& rCopy ); + INonCopyable ( const INonCopyable& rCopy ); + INonCopyable& operator= ( const INonCopyable& rCopy ); -}; // class INonCopyAble +}; // class INonCopyable } // namespace framework