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
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
performance-tests
/
Memory
/
IORsize
/
Foo_i.h
blob
007c7f38043bf8856f00f6f8e4ec5512e50d6672
1
#ifndef FOO_I_H
2
#define FOO_I_H
3
#include
/**/
"ace/pre.h"
4
5
#include
"TestS.h"
6
7
#if defined (_MSC_VER)
8
# pragma warning(push)
9
# pragma warning (disable:4250)
10
#endif
/* _MSC_VER */
11
12
/// Implement the Test::Hello interface
13
class
Foo_i
14
:
public virtual POA_Test
::
Foo
15
{
16
public
:
17
Foo_i
(
CORBA
::
ORB_ptr p
)
18
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
p
)) {}
19
20
private
:
21
CORBA
::
ORB_var orb_
;
22
};
23
24
#if defined(_MSC_VER)
25
# pragma warning(pop)
26
#endif
/* _MSC_VER */
27
28
#include
/**/
"ace/post.h"
29
#endif
/*FOO_I_H*/