Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Bug_3853_Regression / Hello_i.h
blob3b88274a355d631c325883425a1e420389082722
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 () = default;
21 virtual void sayHello (const char * msg);
23 virtual void shutdown();
25 private:
26 CORBA::ORB_var orb_;
30 #endif /* HELLO_I_H */