blob: dbb92284b9b5c3e9804b71230a7bd1beaa87af13 (
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
43
44
45
|
// -*- 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:
// = Initialization and termination methods.
/// 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 */
|