blob: baec2deb9f24dbb11a4b4a37154df866456f8706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* -*- C++ -*- */
// $Id$
// Set.i
template <class T, size_t SIZE> ACE_INLINE size_t
ACE_Fixed_Set<T, SIZE>::size (void) const
{
return this->cur_size_;
}
template <class T> ACE_INLINE size_t
ACE_Bounded_Set<T>::size (void) const
{
ACE_TRACE ("ACE_Bounded_Set<T>::size");
return this->cur_size_;
}
template <class T> ACE_INLINE size_t
ACE_Unbounded_Set<T>::size (void) const
{
// ACE_TRACE ("ACE_Unbounded_Set<T>::size");
return this->cur_size_;
}
|