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

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/examples/CosEC/TypedSimple/Country.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
 
// Country.idl,v 1.1 2003/08/23 01:30:37 michel_j Exp
2
 
 
3
 
//IDL
4
 
 
5
 
#ifndef TAO_COUNTRY_IDL
6
 
#define TAO_COUNTRY_IDL
7
 
 
8
 
#include "orbsvcs/CosTypedEventComm.idl"
9
 
#pragma prefix "jon.com"
10
 
 
11
 
interface Country : ::CosTypedEventComm::TypedPushConsumer 
12
 
{
13
 
  void update_population (in string country,
14
 
                          in long population);
15
 
};
16
 
 
17
 
#endif /* TAO_COUNTRY_IDL */