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
Correct feature names
[ACE_TAO.git]
/
ACE
/
ace
/
Event_Base.inl
blob
fa8cf909e27aea293574e52fb2c5d1a2492bcc55
1
// -*- C++ -*-
2
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
3
4
ACE_INLINE ACE_event_t
5
ACE_Event_Base::handle (void) const
6
{
7
return this->handle_;
8
}
9
10
ACE_INLINE void
11
ACE_Event_Base::handle (ACE_event_t new_handle)
12
{
13
this->handle_ = new_handle;
14
}
15
16
ACE_END_VERSIONED_NAMESPACE_DECL