Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Auto_IncDec_T.inl
blob1edcd2de2f08f202e81464b06303f527c88f020e
1 // -*- C++ -*-
2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 // Implicitly and automatically increment the counter.
6 template <class ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> ACE_INLINE
7 ACE_Auto_IncDec<ACE_SAFELY_INCREMENTABLE_DECREMENTABLE>::ACE_Auto_IncDec
8   (ACE_SAFELY_INCREMENTABLE_DECREMENTABLE &counter)
9   : counter_ (counter)
11   ++this->counter_;
14 // Implicitly and automatically decrement the counter.
16 template <class ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> ACE_INLINE
17 ACE_Auto_IncDec<ACE_SAFELY_INCREMENTABLE_DECREMENTABLE>::~ACE_Auto_IncDec ()
19   --this->counter_;
22 ACE_END_VERSIONED_NAMESPACE_DECL