summaryrefslogtreecommitdiff
path: root/TAO/tests/ORT/ORT_test_i.h
blob: 55aef41d1a95e852e687f57f682a24929b434f0e (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
// -*- C++ -*-

//=============================================================================
/**
 * @file ORT_test_i.h
 *
 * $Id$
 *
 * Implementation header for the "server" IDL interface for the
 * ORT example.
 *
 * @author Priyanka Gontla <gontla_p@ociweb.com>
 */
//=============================================================================


#ifndef ORT_TEST_I_H
#define ORT_TEST_I_H

#include "ORT_testS.h"


class ORT_test_i : public virtual POA_ObjectReferenceTemplate::ORT_test
{
public:

  ORT_test_i (CORBA::ORB_ptr orb);

  virtual CORBA::Boolean request_server (void);

  virtual void shutdown (void);

private:

  CORBA::ORB_var orb_;

};


#endif  /* ORT_TEST_I_H */