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