summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h')
-rw-r--r--TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h b/TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h
new file mode 100644
index 00000000000..ffddfb90fa9
--- /dev/null
+++ b/TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h
@@ -0,0 +1,43 @@
+/* -*- C++ -*- */
+
+//=============================================================================
+/**
+ * @file Object1_i.h
+ *
+ * $Id$
+ *
+ * @author Matt Murphy <murphym@cs.uri.edu>
+ */
+//=============================================================================
+
+#ifndef Object1_I_H
+#define Object1_I_H
+
+#include "testSchedS.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+/**
+ * @class Object1_i
+ *
+ * @brief This class is used to test the RTCORBA 1.0 Scheduling Service
+ *
+ */
+class Object1_impl : public POA_testSched::Object1
+{
+ public:
+ Object1_impl();
+
+ virtual ~Object1_impl();
+
+ virtual void method1(const char *activity,
+ CORBA::Long seconds,
+ char *&output
+ ACE_ENV_ARG_DECL_WITH_DEFAULTS
+ )
+ ACE_THROW_SPEC ((CORBA::SystemException, testSched::testSchedException));
+};
+
+#endif /* Object1_I_H */