~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/examples/Borland/Receiver.idl

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- C++ -*- */
2
 
// Receiver.idl,v 1.1 1999/06/29 01:36:42 schmidt Exp
3
 
 
4
 
interface Receiver
5
 
{
6
 
  // = TITLE
7
 
  //    The Receiver interface is implemented by the simple chat
8
 
  //    clients.The interface functions are called by the chat server.
9
 
 
10
 
  void message (in string msg);
11
 
  // Displays the message in the client application.
12
 
 
13
 
  oneway void shutdown ();
14
 
  // Called by the chat server before it goes away.
15
 
};