Changeset 7145

Show
Ignore:
Timestamp:
07/21/07 22:11:38
Author:
robert
Message:

Added private copy constructors into Block and BlockCount?.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenThreads/trunk/include/OpenThreads/Block

    r7139 r7145  
    9191        Condition _cond; 
    9292        bool _released; 
     93 
     94    private: 
     95 
     96        Block(const Block&) {} 
    9397}; 
    9498 
     
    158162    protected: 
    159163 
    160  
    161164        OpenThreads::Mutex _mut; 
    162165        OpenThreads::Condition _cond; 
    163166        unsigned int _blockCount; 
    164167        unsigned int _currentCount; 
     168 
     169    private: 
     170     
     171        BlockCount(const BlockCount&) {} 
     172 
    165173}; 
    166174