Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / performance-tests / Memory / Single_Threaded / Memory_Growth.h
blob5da0a251fe1b2be8b09c4e04c044c4b0115b6ad0
2 #ifndef MEMORY_GROWTH_H
3 #define MEMORY_GROWTH_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::Hello interface
14 class Memory_Growth
15 : public virtual POA_Test::Memory_Growth
17 public:
18 /// Constructor
19 Memory_Growth (CORBA::ORB_ptr orb);
21 // = The skeleton methods
22 virtual void ping (void);
24 virtual void shutdown (void);
26 private:
27 /// Use an ORB reference to convert strings to objects and shutdown
28 /// the application.
29 CORBA::ORB_var orb_;
32 #if defined(_MSC_VER)
33 # pragma warning(pop)
34 #endif /* _MSC_VER */
36 #include /**/ "ace/post.h"
37 #endif /* MEMORY_GROWTH_H */