summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/Security/ParticipatingApp/Messenger.idl
blob: e492f3c79ab3658d2a3a251239d6fd33c41b9b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
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 );
};