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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_1635_Regression
/
client.cpp
blob
529c063fe4b9ffc6b65c38a9528b4992e5ae2ab5
1
#include
"tao/ORB.h"
2
3
int
4
ACE_TMAIN
(
int
argc
,
ACE_TCHAR
*
argv
[])
5
{
6
try
7
{
8
CORBA
::
ORB_var orb
=
9
CORBA
::
ORB_init
(
argc
,
argv
);
10
}
11
catch
(
const
CORBA
::
Exception
&
ex
)
12
{
13
ex
.
_tao_print_exception
(
"SERVER (%P): Caught exception:"
);
14
return
1
;
15
}
16
17
return
0
;
18
}