summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1330_Regression/Test_i.h
blob: e1f38a7832318baa3e38046cca69f803c7a814d0 (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
//
// $Id$
//
// -*- C++ -*-

#if !defined BUG_1330_REGRESSION_TEST_I_H
 #define BUG_1330_REGRESSION_TEST_I_H

#include "TestS.h"

class Test_i: public POA_Test
{
public:
  /// Constructor
  Test_i (CORBA::ORB_ptr orb);

  /// Destructor
  ~Test_i (void);

  /// A method
  virtual void test_method(void);

  virtual void shutdown (void);

private:
  /// Use an ORB reference to conver strings to objects and shutdown
  /// the application.
  CORBA::ORB_var orb_;
};

#endif /* ! BUG_1330_REGRESSION_TEST_I_H */