More tests update
[ACE_TAO.git] / TAO / tests / Bug_3853_Regression / Hello_i.h
blobf7f361d02f12268bca4829374bb5e592739958e0
2 #ifndef HELLO_I_H
3 #define HELLO_I_H
5 #include "HelloS.h"
7 #if !defined (ACE_LACKS_PRAGMA_ONCE)
8 #pragma once
9 #endif /* ACE_LACKS_PRAGMA_ONCE */
11 class Demo_HelloWorld_i
12 : public virtual POA_Demo::HelloWorld
14 public:
15 // Constructor
16 Demo_HelloWorld_i (CORBA::ORB_ptr orb);
18 // Destructor
19 virtual ~Demo_HelloWorld_i (void);
21 virtual void sayHello (const char * msg);
23 virtual void shutdown();
25 private:
26 CORBA::ORB_var orb_;
30 #endif /* HELLO_I_H */