summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger.idl')
-rw-r--r--ACE/TAO/orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger.idl12
1 files changed, 12 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger.idl b/ACE/TAO/orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger.idl
new file mode 100644
index 00000000000..e492f3c79ab
--- /dev/null
+++ b/ACE/TAO/orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger.idl
@@ -0,0 +1,12 @@
+/* -*- C++ -*- $Id$ */
+
+// messenger.idl
+
+interface Messenger
+{
+ boolean send_message ( in string user_name,
+ in string subject,
+ inout string message );
+
+ void shutdown ( in string user_name );
+};