Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / performance-tests / POA / Implicit_Activation / Simple.h
blob5a234c4b6e9a0d7eb29dbefc1c21b3b46c59d2c3
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 ();
21 // = The skeleton methods
23 virtual void destroy ();
26 #if defined(_MSC_VER)
27 # pragma warning(pop)
28 #endif /* _MSC_VER */
30 #include /**/ "ace/post.h"
31 #endif /* SIMPLE_H */