Use =default for skeleton copy constructor
[ACE_TAO.git] / TAO / tests / InterOp-Naming / INS_i.h
blob5c64e55ab564ce42b2a410093fe1a3fd8f165a7d
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file INS_i.h
7 * This class implements the INS interface.
9 * @author Vishal Kachroo <vishal@cs.wustl.edu>
11 //=============================================================================
14 #ifndef INS_I_H
15 #define INS_I_H
17 #include "INSS.h"
19 class INS_i : public POA_INS
21 public:
22 /// Constructor.
23 INS_i ();
25 /// Destructor.
26 ~INS_i ();
28 /// test the INS.
29 char * test_ins ();
31 /// Set the ORB pointer.
32 void orb (CORBA::ORB_ptr o);
34 private:
35 /// ORB pointer.
36 CORBA::ORB_var orb_;
39 #endif /* INS_I_H */