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 "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
TAO
/
tests
/
ORB_portspan
/
simpleI.h
blob
8ce06ce9497be252f15149bbc616311b50e0b9a0
1
#ifndef SIMPLEI_H_
2
#define SIMPLEI_H_
3
4
#include
"simpleS.h"
5
6
#if !defined (ACE_LACKS_PRAGMA_ONCE)
7
#pragma once
8
#endif
/* ACE_LACKS_PRAGMA_ONCE */
9
10
//Class simple_i
11
class
simple_i
:
public virtual
POA_simple
12
{
13
public
:
14
//Constructor
15
simple_i
();
16
17
//Destructor
18
~
simple_i
()
override
=
default
;
19
20
void
test
()
override
;
21
};
22
23
#endif
/* SIMPLEI_H_ */