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
/
ORB_shutdown
/
Foo_Bar.h
blob
21c0a669204674c2eddf3f977fae630d3314c972
1
2
#ifndef HELLO_H
3
#define HELLO_H
4
#include
/**/
"ace/pre.h"
5
6
#include
"TestS.h"
7
8
/// Implement the Test::Hello interface
9
class
Foo_Bar
10
:
public virtual POA_Test
::
Foo
11
{
12
public
:
13
/// Constructor
14
Foo_Bar
(
CORBA
::
ORB_ptr orb
);
15
16
/// Dtor
17
~
Foo_Bar
(
void
);
18
19
20
private
:
21
/// Use an ORB reference to convert strings to objects and shutdown
22
/// the application.
23
CORBA
::
ORB_var orb_
;
24
};
25
26
#include
/**/
"ace/post.h"
27
#endif
/* HELLO_H */