summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1627_Regression/Test_i.h
blob: 369ae33b782a9e51d3cba36e7f96742889f48213 (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
//
// $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 (void);

   /// Destructor
   ~Test_i (void);

   /// A method
   void test_method(void)
     ACE_THROW_SPEC ((CORBA::SystemException));
};

#endif /* ! BUG_1330_REGRESSION_TEST_I_H */