Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / performance-tests / POA / Implicit_Activation / Simple.h
blob3279cb2ae10e3f387323c0c9dac9e8ddef160d45
2 #ifndef SIMPLE_H
3 #define SIMPLE_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 #if defined (_MSC_VER)
9 # pragma warning(push)
10 # pragma warning (disable:4250)
11 #endif /* _MSC_VER */
13 /// Implement the Test::Simple interface
14 class Simple
15 : public virtual POA_Test::Simple
17 public:
18 /// Constructor
19 Simple (void);
21 // = The skeleton methods
23 virtual void destroy (void);
26 #if defined(_MSC_VER)
27 # pragma warning(pop)
28 #endif /* _MSC_VER */
30 #include /**/ "ace/post.h"
31 #endif /* SIMPLE_H */