summaryrefslogtreecommitdiff
path: root/TAO/tests/InterOp-Naming/INS_i.h
blob: 20046dac2459d28d41c4cdedacbd73ec605b03ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// -*- C++ -*-

//=============================================================================
/**
 *  @file    INS_i.h
 *
 *  This class implements the INS interface.
 *
 *  @author Vishal Kachroo <vishal@cs.wustl.edu>
 */
//=============================================================================


#ifndef INS_I_H
#define INS_I_H

#include "INSS.h"

class INS_i : public POA_INS
{
public:
  /// Constructor.
  INS_i (void);

  /// Destructor.
  ~INS_i (void);

  /// test the INS.
  char * test_ins (void);

  /// Set the ORB pointer.
  void orb (CORBA::ORB_ptr o);

private:
  /// ORB pointer.
  CORBA::ORB_var orb_;

};

#endif /* INS_I_H */