summaryrefslogtreecommitdiff
path: root/framework/inc
diff options
context:
space:
mode:
authorAndreas Schlüns <as@openoffice.org>2001-06-11 09:23:14 +0000
committerAndreas Schlüns <as@openoffice.org>2001-06-11 09:23:14 +0000
commit8a1a92d3cd9f62451c1acfc4cc91c5fe46b93dfe (patch)
treeb743303e8bc3e7d0742dc91add18791b6553e3a5 /framework/inc
parent08014f0f4423033a436dafb200aa73a12915cf80 (diff)
#85529# ren interface
Diffstat (limited to 'framework/inc')
-rw-r--r--framework/inc/threadhelp/inoncopyable.h15
1 files 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