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