diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-01 15:16:15 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-01 15:16:15 +0000 |
commit | 653d8dd2117383bcfdfb28abed50c1ef00beff53 (patch) | |
tree | 3c423dee9a45c949787f0f10d1cf8c23c8deb7a7 /ace/Synch_T.h | |
parent | 627e5d762f7e12f41141bf49c95a4fa2bec641df (diff) | |
download | ATCD-653d8dd2117383bcfdfb28abed50c1ef00beff53.tar.gz |
wrapper unimplemented template class copy constructor and assignment operator with ACE_UNIMPLEMENTED_FUNC
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r-- | ace/Synch_T.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h index 8c1f142f7fd..58c77ff6064 100644 --- a/ace/Synch_T.h +++ b/ace/Synch_T.h @@ -271,8 +271,8 @@ protected: // "Destructor" that deletes internal TYPE * when thread exits. #endif /* defined (ACE_HAS_THREADS) && defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) */ // = Disallow copying... - void operator= (const ACE_TSS<TYPE> &); - ACE_TSS (const ACE_TSS<TYPE> &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS<TYPE> &)) + ACE_UNIMPLEMENTED_FUNC (ACE_TSS (const ACE_TSS<TYPE> &)) }; #if defined (ACE_HAS_TEMPLATE_TYPEDEFS) @@ -365,8 +365,8 @@ protected: private: // = Prevent assignment and initialization. - void operator= (const ACE_Guard<ACE_LOCK> &); - ACE_Guard (const ACE_Guard<ACE_LOCK> &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard<ACE_LOCK> &)) + ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard<ACE_LOCK> &)) }; template <class ACE_LOCK> @@ -514,8 +514,8 @@ protected: private: // = Prevent assignment and initialization. - void operator= (const ACE_TSS_Guard<ACE_LOCK> &); - ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard<ACE_LOCK> &)) + ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &)) }; template <class ACE_LOCK> @@ -668,7 +668,7 @@ protected: private: // = Prevent assignment and initialization. - void operator= (const ACE_Condition<MUTEX> &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Condition<MUTEX> &)) ACE_Condition (const ACE_Condition<MUTEX> &c): mutex_ (c.mutex_) {} }; |