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
/
performance-tests
/
POA
/
Implicit_Activation
/
Simple.h
blob
3279cb2ae10e3f387323c0c9dac9e8ddef160d45
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
(
void
);
20
21
// = The skeleton methods
22
23
virtual
void
destroy
(
void
);
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 */