Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / InterOp-Naming / INS_i.h
blob20046dac2459d28d41c4cdedacbd73ec605b03ee
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 (void);
25 /// Destructor.
26 ~INS_i (void);
28 /// test the INS.
29 char * test_ins (void);
31 /// Set the ORB pointer.
32 void orb (CORBA::ORB_ptr o);
34 private:
35 /// ORB pointer.
36 CORBA::ORB_var orb_;
40 #endif /* INS_I_H */