diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-11-03 17:19:49 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-11-03 17:19:49 +0000 |
commit | e3cbbcdc3bac74ff3ac57b2b46d455267718053e (patch) | |
tree | 91a8e6ed800f032342e79a09d9c01c68248f1a98 /ace/Activation_Queue.h | |
parent | 0d9b9323625449b9b8511ebb32548fd8de6103dd (diff) | |
download | ATCD-e3cbbcdc3bac74ff3ac57b2b46d455267718053e.tar.gz |
ChangeLogTag:Thu Nov 3 09:16:23 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/Activation_Queue.h')
-rw-r--r-- | ace/Activation_Queue.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ace/Activation_Queue.h b/ace/Activation_Queue.h index 7ded53ca766..c1ae425a302 100644 --- a/ace/Activation_Queue.h +++ b/ace/Activation_Queue.h @@ -145,7 +145,14 @@ public: /// Declare the dynamic allocation hooks. ACE_ALLOC_HOOK_DECLARE; +private: + + // = Prevent copying and assignment. + ACE_Activation_Queue (const ACE_Activation_Queue &); + void operator= (const ACE_Activation_Queue &); + protected: + /// Stores the Method_Requests. ACE_Message_Queue<ACE_SYNCH> *queue_; @@ -153,15 +160,13 @@ protected: int delete_queue_; private: + /// Allocation strategy of the queue. ACE_Allocator *allocator_; /// Allocation strategy of the message blocks. ACE_Allocator *data_block_allocator_; - // = Prevent assignment and initialization. - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Activation_Queue &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Activation_Queue (const ACE_Activation_Queue &)) }; ACE_END_VERSIONED_NAMESPACE_DECL |