~ubuntu-branches/ubuntu/natty/orbit2/natty

« back to all changes in this revision

Viewing changes to src/idl/interop/conv_frame.idl

  • Committer: Bazaar Package Importer
  • Author(s): Chris Waters
  • Date: 2002-03-25 17:24:03 UTC
  • Revision ID: james.westby@ubuntu.com-20020325172403-8lexv63608acfqgt
Tags: upstream-2.3.107
ImportĀ upstreamĀ versionĀ 2.3.107

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// File: CONV_FRAME.idl
 
2
// From CORBA 2.3: Chapter 13, Interoperability Architecture
 
3
 
 
4
#ifndef _CONV_FRAME_IDL
 
5
#define _CONV_FRAME_IDL
 
6
 
 
7
#pragma prefix "omg.org"
 
8
 
 
9
module CONV_FRAME {
 
10
    typedef unsigned long CodeSetId;
 
11
 
 
12
    struct CodeSetComponent {
 
13
        CodeSetId               native_code_set;
 
14
        sequence<CodeSetId>     conversion_code_sets;
 
15
    };
 
16
    struct CodeSetComponentInfo {
 
17
        CodeSetComponent        ForCharData;
 
18
        CodeSetComponent        ForWcharData;
 
19
        };
 
20
 
 
21
    struct CodeSetContext {
 
22
        CodeSetId               char_data;
 
23
        CodeSetId               wchar_data;
 
24
    };
 
25
};
 
26
#endif // _CONV_FRAME_IDL
 
27