~ubuntu-branches/ubuntu/utopic/python-omniorb/utopic

« back to all changes in this revision

Viewing changes to examples/valuetype/simple/value.idl

  • Committer: Bazaar Package Importer
  • Author(s): Floris Bruynooghe
  • Date: 2008-03-26 22:17:38 UTC
  • Revision ID: james.westby@ubuntu.com-20080326221738-r20t9hmikbvcg2vh
Tags: upstream-3.2
ImportĀ upstreamĀ versionĀ 3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
module ValueTest {
 
3
  valuetype One {
 
4
    public string s;
 
5
    public long   l;
 
6
  };
 
7
 
 
8
  interface Test {
 
9
    One op1(in One a, in One b);
 
10
  };
 
11
};