From 653d8dd2117383bcfdfb28abed50c1ef00beff53 Mon Sep 17 00:00:00 2001 From: levine Date: Fri, 1 Aug 1997 15:16:15 +0000 Subject: wrapper unimplemented template class copy constructor and assignment operator with ACE_UNIMPLEMENTED_FUNC --- ace/Synch_T.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ace/Synch_T.h') 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 &); - ACE_TSS (const ACE_TSS &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS &)) + ACE_UNIMPLEMENTED_FUNC (ACE_TSS (const ACE_TSS &)) }; #if defined (ACE_HAS_TEMPLATE_TYPEDEFS) @@ -365,8 +365,8 @@ protected: private: // = Prevent assignment and initialization. - void operator= (const ACE_Guard &); - ACE_Guard (const ACE_Guard &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard &)) + ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard &)) }; template @@ -514,8 +514,8 @@ protected: private: // = Prevent assignment and initialization. - void operator= (const ACE_TSS_Guard &); - ACE_TSS_Guard (const ACE_TSS_Guard &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard &)) + ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard &)) }; template @@ -668,7 +668,7 @@ protected: private: // = Prevent assignment and initialization. - void operator= (const ACE_Condition &); + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Condition &)) ACE_Condition (const ACE_Condition &c): mutex_ (c.mutex_) {} }; -- cgit v1.2.1