summaryrefslogtreecommitdiff
path: root/TAO/tests/Crash_On_Write/Oneway_Receiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Crash_On_Write/Oneway_Receiver.h')
-rw-r--r--TAO/tests/Crash_On_Write/Oneway_Receiver.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tests/Crash_On_Write/Oneway_Receiver.h b/TAO/tests/Crash_On_Write/Oneway_Receiver.h
new file mode 100644
index 00000000000..141636d9361
--- /dev/null
+++ b/TAO/tests/Crash_On_Write/Oneway_Receiver.h
@@ -0,0 +1,24 @@
+//
+// $Id$
+//
+
+#ifndef ONEWAY_RECEIVER_H
+#define ONEWAY_RECEIVER_H
+#include /**/ "ace/pre.h"
+
+#include "TestS.h"
+
+/// Implement the Test::Oneway_Receiver interface
+class Oneway_Receiver
+ : public virtual POA_Test::Oneway_Receiver
+{
+public:
+ /// Constructor
+ Oneway_Receiver (void);
+
+ // = The skeleton methods
+ virtual void receive_oneway (void);
+};
+
+#include /**/ "ace/post.h"
+#endif /* ONEWAY_RECEIVER_H */