Use =default for skeleton copy constructor
[ACE_TAO.git] / TAO / tests / Bug_2654_Regression / Hello.h
blobd71aff730df29a28bb97544f1b85c3ac87e162bd
1 #ifndef HELLO_H
2 #define HELLO_H
3 #include /**/ "ace/pre.h"
5 #include "HelloS.h"
7 /// Implement the Test::Hello interface
8 class Hello
9 : public virtual POA_Test::Hello
11 public:
12 /// Constructor
13 Hello (CORBA::ORB_ptr orb);
15 // = The skeleton methods
16 virtual void method (CORBA::Short count);
18 virtual void set_callback (Test::CallBack_ptr cb);
21 private:
22 /// Use an ORB reference to convert strings to objects and shutdown
23 /// the application.
24 CORBA::ORB_var orb_;
25 Test::CallBack_var callback_;
26 int count_;
29 #include /**/ "ace/post.h"
30 #endif /* HELLO_H */