blob: e05be5ff6c75efac0b74e7fbe11e8b0c804dcf9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
//
// $Id$
//
// ================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// Current.pidl
//
// = DESCRIPTION
//
// This file was used to generate the code in CurrentC.{h,i,cpp}.
//
// The steps to regenerate the code are as follows:
//
// 1. Patch this pidl file to (a) remove the CORBA module bringing
// the Current interface to the global scope; and (b) rename the
// Current interface to CORBA_Current.
//
// Apply patches using the following commands:
//
// patch < diffs/Current.pidl.diff
//
// 2. Run the tao_idl compiler on the patched pidl file. The
// command used for this is:
//
// tao_idl.exe
// -Ge 1
// -Wb,export_macro=TAO_Export
// -Wb,export_include="tao/corbafwd.h"
// -Wb,pre_include="ace/pre.h"
// -Wb,post_include="ace/post.h"
// Current.pidl
//
// 3. Then patch the generated code. This patch (a) fixes the
// interface repository IDs; and (b) eliminates cycles in the
// include dependencies.
//
// Apply patches using the following commands:
//
// patch < diffs/CurrentC.h.diff
// patch < diffs/CurrentC.i.diff
// patch < diffs/CurrentC.cpp.diff
//
// 4. Undo the patches to this pidl file.
//
// Note: The diffs were generated with these commands:
//
// diff -wbu Current.pidl Current.pidl.mod > diffs/Current.pidl.diff
//
// diff -wbu CurrentC.h CurrentC.h.mod > diffs/CurrentC.h.diff
// diff -wbu CurrentC.i CurrentC.i.mod > diffs/CurrentC.i.diff
// diff -wbu CurrentC.cpp CurrentC.cpp.mod > diffs/CurrentC.cpp.diff
//
// ================================================================
#pragma prefix "omg.org"
module CORBA
{
local interface Current {};
};
#pragma prefix ""
|