diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-03-08 04:46:32 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-03-08 04:46:32 +0000 |
commit | 2c0dba5119d8dfd6bc8a526397ef0a2eb66189c5 (patch) | |
tree | 23cb4397202bf6f95733da17ca3115cbc0bfd1c3 /TAO/tao/TAO_Singleton.h | |
parent | 8c23afaa17d7abd748a3fc60028766c6094195b1 (diff) | |
download | ATCD-2c0dba5119d8dfd6bc8a526397ef0a2eb66189c5.tar.gz |
ChangeLogTag:Thu Mar 7 20:43:56 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao/TAO_Singleton.h')
-rw-r--r-- | TAO/tao/TAO_Singleton.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/tao/TAO_Singleton.h b/TAO/tao/TAO_Singleton.h index 1bfc9091c7b..3069d80edb6 100644 --- a/TAO/tao/TAO_Singleton.h +++ b/TAO/tao/TAO_Singleton.h @@ -7,8 +7,7 @@ * $Id$ * * Header file for the TAO-specific Singleton implementation. - * Based entirely on tao/TAO_Singleton.*. - * + * Based entirely on ace/Singleton.*. * * @author Ossama Othman <ossama@uci.edu> */ @@ -109,6 +108,12 @@ protected: /// Get pointer to the TAO TSS Singleton instance. static TAO_TSS_Singleton<TYPE, ACE_LOCK> *&instance_i (void); + +private: + + ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_TSS_Singleton<TYPE,ACE_LOCK> &)) + ACE_UNIMPLEMENTED_FUNC (TAO_TSS_Singleton (const TAO_TSS_Singleton<TYPE,ACE_LOCK> &)) + }; #if defined (__ACE_INLINE__) |