summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1330_Regression/Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1330_Regression/Test_i.h')
-rw-r--r--TAO/tests/Bug_1330_Regression/Test_i.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1330_Regression/Test_i.h b/TAO/tests/Bug_1330_Regression/Test_i.h
new file mode 100644
index 00000000000..acaff8a29b1
--- /dev/null
+++ b/TAO/tests/Bug_1330_Regression/Test_i.h
@@ -0,0 +1,26 @@
+//
+// $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(ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+};
+
+#endif /* ! BUG_1330_REGRESSION_TEST_I_H */