repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated logging to include the class/method so that it is more obvious where these...
[ACE_TAO.git]
/
TAO
/
tao
/
Incoming_Message_Queue.inl
blob
fcf39d83a9b8eb07c7837c3786a13c7a1a1e57d8
1
// -*- C++ -*-
2
//
3
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4
5
ACE_INLINE
6
TAO_Incoming_Message_Queue::TAO_Incoming_Message_Queue (TAO_ORB_Core *orb_core)
7
: last_added_ (0),
8
size_ (0),
9
orb_core_ (orb_core)
10
{
11
}
12
13
ACE_INLINE CORBA::ULong
14
TAO_Incoming_Message_Queue::queue_length () const
15
{
16
return this->size_;
17
}
18
19
TAO_END_VERSIONED_NAMESPACE_DECL