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
Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
performance-tests
/
RTEvent
/
lib
/
Shutdown.inl
blob
f0bda27e05118b3f34f97e2c3b7db95fff54ce7a
1
/**
2
* @file Shutdown.inl
3
*
4
* @author Carlos O'Ryan <coryan@uci.edu>
5
*/
6
7
template<class Client> ACE_INLINE void
8
Shutdown<Client>::operator () (Client *client)
9
{
10
try
11
{
12
client->shutdown ();
13
}
14
catch (const CORBA::Exception&){ };
15
}