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
/
performance-tests
/
POA
/
Implicit_Activation
/
Simple.h
blob
5a234c4b6e9a0d7eb29dbefc1c21b3b46c59d2c3
1
2
#ifndef SIMPLE_H
3
#define SIMPLE_H
4
#include
/**/
"ace/pre.h"
5
6
#include
"TestS.h"
7
8
#if defined (_MSC_VER)
9
# pragma warning(push)
10
# pragma warning (disable:4250)
11
#endif
/* _MSC_VER */
12
13
/// Implement the Test::Simple interface
14
class
Simple
15
:
public virtual POA_Test
::
Simple
16
{
17
public
:
18
/// Constructor
19
Simple
();
20
21
// = The skeleton methods
22
23
virtual
void
destroy
();
24
};
25
26
#if defined(_MSC_VER)
27
# pragma warning(pop)
28
#endif
/* _MSC_VER */
29
30
#include
/**/
"ace/post.h"
31
#endif
/* SIMPLE_H */