diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-01 23:23:10 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-01 23:23:10 +0000 |
commit | 7fa2478432903b9a8ceeb13b02f2946ae1c64dbf (patch) | |
tree | 92f31e65c54fd4ddef14531a8384b12374e2e5ab /ace/Local_Tokens.h | |
parent | 84b9c202c5e9fb91a38c74e5e78f970655508c59 (diff) | |
download | ATCD-7fa2478432903b9a8ceeb13b02f2946ae1c64dbf.tar.gz |
See my ChangeLog entry from 1 April 1999.
Diffstat (limited to 'ace/Local_Tokens.h')
-rw-r--r-- | ace/Local_Tokens.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ace/Local_Tokens.h b/ace/Local_Tokens.h index e797f5b7ee9..7bdb5f15b2c 100644 --- a/ace/Local_Tokens.h +++ b/ace/Local_Tokens.h @@ -248,6 +248,12 @@ public: // Dump the state of an object. private: + ACE_TPQ_Iterator (const ACE_TPQ_Iterator &); + ACE_TPQ_Iterator & operator= (const ACE_TPQ_Iterator & rhs); + // Explicitly disallow use of implicitly generated copy + // constructor and assignment operator to prevent inadvertent + // memory leaks. + ACE_TPQ_Entry *current_; }; @@ -307,6 +313,13 @@ protected: // Tail. int size_; // Size. + +private: + ACE_Token_Proxy_Queue (const ACE_Token_Proxy_Queue &); + ACE_Token_Proxy_Queue & operator= (const ACE_Token_Proxy_Queue & rhs); + // Explicitly disallow use of implicitly generated copy + // constructor and assignment operator to prevent inadvertent + // memory leaks. }; // 5.. @@ -828,6 +841,13 @@ protected: virtual ACE_Tokens *create_token (const ASYS_TCHAR *name) = 0; // Make the correct type of ACE_Tokens. This is called by the Token // Manager. + +private: + //ACE_Token_Proxy (const ACE_Token_Proxy &); + ACE_Token_Proxy & operator= (const ACE_Token_Proxy & rhs); + // Explicitly disallow use of implicitly generated copy + // constructor and assignment operator to prevent inadvertent + // memory leaks. }; // 8.. |