r2corba 1.4.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGES +159 -0
- data/LICENSE +59 -0
- data/README +62 -0
- data/THANKS +52 -0
- data/bin/r2corba +8 -0
- data/bin/r2corba.bat +20 -0
- data/bin/ridlc +11 -0
- data/bin/ridlc.bat +23 -0
- data/bin/rins +7 -0
- data/bin/rins.bat +19 -0
- data/ext/.keep +0 -0
- data/lib/corba/cbase/IORMap.rb +33 -0
- data/lib/corba/cbase/ORB.rb +231 -0
- data/lib/corba/cbase/Request.rb +134 -0
- data/lib/corba/cbase/Streams.rb +129 -0
- data/lib/corba/cbase/Stub.rb +19 -0
- data/lib/corba/cbase/Typecode.rb +441 -0
- data/lib/corba/cbase/Values.rb +129 -0
- data/lib/corba/cbase/exception.rb +66 -0
- data/lib/corba/cbase/poa.rb +23 -0
- data/lib/corba/cbase/policies.rb +78 -0
- data/lib/corba/cbase/post_require.rb +14 -0
- data/lib/corba/cbase/require.rb +28 -0
- data/lib/corba/cmds/base.rb +85 -0
- data/lib/corba/cmds/test.rb +30 -0
- data/lib/corba/common/Any.rb +91 -0
- data/lib/corba/common/IDL.rb +104 -0
- data/lib/corba/common/ORB.rb +368 -0
- data/lib/corba/common/Object.rb +208 -0
- data/lib/corba/common/Request.rb +20 -0
- data/lib/corba/common/Servant.rb +108 -0
- data/lib/corba/common/Struct.rb +22 -0
- data/lib/corba/common/Stub.rb +79 -0
- data/lib/corba/common/Typecode.rb +1121 -0
- data/lib/corba/common/Union.rb +56 -0
- data/lib/corba/common/Values.rb +92 -0
- data/lib/corba/common/const.rb +22 -0
- data/lib/corba/common/exception.rb +68 -0
- data/lib/corba/common/require.rb +27 -0
- data/lib/corba/common/version.rb +22 -0
- data/lib/corba/idl/BiDirPolicyC.rb +63 -0
- data/lib/corba/idl/CosNamingC.rb +461 -0
- data/lib/corba/idl/CosNamingS.rb +309 -0
- data/lib/corba/idl/IDL.rb +21 -0
- data/lib/corba/idl/IORTable.pidl +62 -0
- data/lib/corba/idl/IORTableC.rb +117 -0
- data/lib/corba/idl/MessagingC.rb +904 -0
- data/lib/corba/idl/POAC.rb +930 -0
- data/lib/corba/idl/TAO_Ext.pidl +46 -0
- data/lib/corba/idl/TAO_ExtC.rb +179 -0
- data/lib/corba/idl/r2c_orb.rb +572 -0
- data/lib/corba/idl/require.rb +20 -0
- data/lib/corba/jbase/Any.rb +273 -0
- data/lib/corba/jbase/IORMap.rb +36 -0
- data/lib/corba/jbase/ORB.rb +99 -0
- data/lib/corba/jbase/Object.rb +98 -0
- data/lib/corba/jbase/Request.rb +226 -0
- data/lib/corba/jbase/Servant.rb +247 -0
- data/lib/corba/jbase/ServerRequest.rb +128 -0
- data/lib/corba/jbase/Streams.rb +671 -0
- data/lib/corba/jbase/Stub.rb +38 -0
- data/lib/corba/jbase/Typecode.rb +520 -0
- data/lib/corba/jbase/Values.rb +173 -0
- data/lib/corba/jbase/exception.rb +106 -0
- data/lib/corba/jbase/poa.rb +229 -0
- data/lib/corba/jbase/policies.rb +300 -0
- data/lib/corba/jbase/post_require.rb +14 -0
- data/lib/corba/jbase/require.rb +86 -0
- data/lib/corba/naming.rb +14 -0
- data/lib/corba/naming_service.rb +15 -0
- data/lib/corba/poa.rb +15 -0
- data/lib/corba/policies.rb +18 -0
- data/lib/corba/require.rb +17 -0
- data/lib/corba/svcs/ins/cos_naming.rb +426 -0
- data/lib/corba/svcs/ins/ins.rb +526 -0
- data/lib/corba/svcs/ins/naming_service.rb +119 -0
- data/lib/corba.rb +16 -0
- data/lib/ridlbe/ruby/config.rb +336 -0
- data/lib/ridlbe/ruby/orb.pidlc +0 -0
- data/lib/ridlbe/ruby/require.rb +16 -0
- data/lib/ridlbe/ruby/walker.rb +1582 -0
- data/mkrf_conf_bingem.rb +101 -0
- data/rakelib/bin.rake +80 -0
- data/rakelib/bin.rb +146 -0
- data/rakelib/build.rake +87 -0
- data/rakelib/config.rake +52 -0
- data/rakelib/config.rb +450 -0
- data/rakelib/ext.rake +242 -0
- data/rakelib/ext.rb +308 -0
- data/rakelib/ext_r2tao.rb +232 -0
- data/rakelib/gem.rake +212 -0
- data/rakelib/gem.rb +146 -0
- data/rakelib/package.rake +26 -0
- data/rakelib/test.rake +23 -0
- data/test/BiDirectional/Test.idl +34 -0
- data/test/BiDirectional/client.rb +132 -0
- data/test/BiDirectional/run_test.rb +68 -0
- data/test/BiDirectional/server.ior +1 -0
- data/test/BiDirectional/server.rb +169 -0
- data/test/CORBA_Services/Naming/BindingIterator/Test.idl +27 -0
- data/test/CORBA_Services/Naming/BindingIterator/client.rb +121 -0
- data/test/CORBA_Services/Naming/BindingIterator/ins.ior +1 -0
- data/test/CORBA_Services/Naming/BindingIterator/run_test.rb +82 -0
- data/test/CORBA_Services/Naming/BindingIterator/server.rb +109 -0
- data/test/CORBA_Services/Naming/Corbaname/Test.idl +27 -0
- data/test/CORBA_Services/Naming/Corbaname/client.rb +85 -0
- data/test/CORBA_Services/Naming/Corbaname/corbaname.ior +1 -0
- data/test/CORBA_Services/Naming/Corbaname/ins.ior +1 -0
- data/test/CORBA_Services/Naming/Corbaname/run_test.rb +88 -0
- data/test/CORBA_Services/Naming/Corbaname/server.rb +135 -0
- data/test/CORBA_Services/Naming/Simple/Test.idl +27 -0
- data/test/CORBA_Services/Naming/Simple/client.rb +84 -0
- data/test/CORBA_Services/Naming/Simple/ins.ior +1 -0
- data/test/CORBA_Services/Naming/Simple/run_test.rb +82 -0
- data/test/CORBA_Services/Naming/Simple/server.rb +109 -0
- data/test/Collocation/Diamond.idl +39 -0
- data/test/Collocation/run_test.rb +52 -0
- data/test/Collocation/test.rb +195 -0
- data/test/Connect_Timeout/Test.idl +27 -0
- data/test/Connect_Timeout/client.rb +111 -0
- data/test/Connect_Timeout/run_test.rb +52 -0
- data/test/DII/Test.idl +27 -0
- data/test/DII/client.rb +115 -0
- data/test/DII/run_test.rb +69 -0
- data/test/DII/server.ior +1 -0
- data/test/DII/server.rb +95 -0
- data/test/DSI/Test.idl +27 -0
- data/test/DSI/client.rb +66 -0
- data/test/DSI/run_test.rb +69 -0
- data/test/DSI/server.ior +1 -0
- data/test/DSI/server.rb +106 -0
- data/test/Exceptions/Test.idl +48 -0
- data/test/Exceptions/client.rb +118 -0
- data/test/Exceptions/run_test.rb +69 -0
- data/test/Exceptions/server.ior +1 -0
- data/test/Exceptions/server.rb +131 -0
- data/test/Hello/Test.idl +27 -0
- data/test/Hello/client.rb +78 -0
- data/test/Hello/run_test.rb +71 -0
- data/test/Hello/server.rb +95 -0
- data/test/IDL_Test/Test.idl +113 -0
- data/test/IDL_Test/Test_inc.idl +17 -0
- data/test/IDL_Test/client.rb +102 -0
- data/test/IDL_Test/run_test.rb +69 -0
- data/test/IDL_Test/server.ior +1 -0
- data/test/IDL_Test/server.rb +99 -0
- data/test/IORMap/Test.idl +27 -0
- data/test/IORMap/client.rb +73 -0
- data/test/IORMap/run_test.rb +69 -0
- data/test/IORMap/server.ior +1 -0
- data/test/IORMap/server.rb +114 -0
- data/test/IORTable/Test.idl +27 -0
- data/test/IORTable/client.rb +75 -0
- data/test/IORTable/run_test.rb +69 -0
- data/test/IORTable/server.ior +1 -0
- data/test/IORTable/server.rb +130 -0
- data/test/Implicit_Conversion/Test.idl +31 -0
- data/test/Implicit_Conversion/client.rb +110 -0
- data/test/Implicit_Conversion/run_test.rb +69 -0
- data/test/Implicit_Conversion/server.ior +1 -0
- data/test/Implicit_Conversion/server.rb +99 -0
- data/test/Multi_Threading/Multiple_ORB/Test.idl +27 -0
- data/test/Multi_Threading/Multiple_ORB/client.rb +82 -0
- data/test/Multi_Threading/Multiple_ORB/run_test.rb +71 -0
- data/test/Multi_Threading/Multiple_ORB/server.rb +108 -0
- data/test/Multi_Threading/Multiple_ORB/server0.ior +1 -0
- data/test/Multi_Threading/Multiple_ORB/server1.ior +1 -0
- data/test/Multi_Threading/Simple/Test.idl +27 -0
- data/test/Multi_Threading/Simple/client.rb +88 -0
- data/test/Multi_Threading/Simple/run_test.rb +69 -0
- data/test/Multi_Threading/Simple/server.ior +1 -0
- data/test/Multi_Threading/Simple/server.rb +118 -0
- data/test/Multi_Threading/Threads/Test.idl +31 -0
- data/test/Multi_Threading/Threads/client.rb +80 -0
- data/test/Multi_Threading/Threads/run_test.rb +76 -0
- data/test/Multi_Threading/Threads/server.ior +1 -0
- data/test/Multi_Threading/Threads/server.rb +119 -0
- data/test/Multi_Threading/Threads/watchdog.ior +1 -0
- data/test/Multi_Threading/Threads/watchdog.rb +87 -0
- data/test/Multiple_Servant_Interfaces/Test.idl +34 -0
- data/test/Multiple_Servant_Interfaces/client.rb +70 -0
- data/test/Multiple_Servant_Interfaces/run_test.rb +69 -0
- data/test/Multiple_Servant_Interfaces/server.ior +1 -0
- data/test/Multiple_Servant_Interfaces/server.rb +102 -0
- data/test/Nil/Test.idl +27 -0
- data/test/Nil/run_test.rb +52 -0
- data/test/Nil/test.rb +78 -0
- data/test/OBV/AbstractInterface/client.rb +179 -0
- data/test/OBV/AbstractInterface/run_test.rb +69 -0
- data/test/OBV/AbstractInterface/server.ior +1 -0
- data/test/OBV/AbstractInterface/server.rb +149 -0
- data/test/OBV/AbstractInterface/test.idl +53 -0
- data/test/OBV/Custom/OBV.idl +18 -0
- data/test/OBV/Custom/OBV_impl.rb +40 -0
- data/test/OBV/Custom/client.rb +86 -0
- data/test/OBV/Custom/run_test.rb +69 -0
- data/test/OBV/Custom/server.ior +1 -0
- data/test/OBV/Custom/server.rb +100 -0
- data/test/OBV/Simple/OBV.idl +15 -0
- data/test/OBV/Simple/OBV_impl.rb +26 -0
- data/test/OBV/Simple/client.rb +86 -0
- data/test/OBV/Simple/run_test.rb +69 -0
- data/test/OBV/Simple/server.ior +1 -0
- data/test/OBV/Simple/server.rb +100 -0
- data/test/OBV/Simple_Event/Event.idl +15 -0
- data/test/OBV/Simple_Event/Event_impl.rb +26 -0
- data/test/OBV/Simple_Event/client.rb +86 -0
- data/test/OBV/Simple_Event/run_test.rb +69 -0
- data/test/OBV/Simple_Event/server.ior +1 -0
- data/test/OBV/Simple_Event/server.rb +100 -0
- data/test/OBV/Supports/client.rb +116 -0
- data/test/OBV/Supports/run_test.rb +69 -0
- data/test/OBV/Supports/server.ior +1 -0
- data/test/OBV/Supports/server.rb +103 -0
- data/test/OBV/Supports/supports.idl +33 -0
- data/test/OBV/Supports/supports_impl.rb +57 -0
- data/test/OBV/Tree/client.rb +116 -0
- data/test/OBV/Tree/run_test.rb +69 -0
- data/test/OBV/Tree/server.ior +1 -0
- data/test/OBV/Tree/server.rb +117 -0
- data/test/OBV/Tree/test.idl +32 -0
- data/test/OBV/Truncatable/Extra.idl +27 -0
- data/test/OBV/Truncatable/Truncatable.idl +105 -0
- data/test/OBV/Truncatable/Truncatable_impl.rb +86 -0
- data/test/OBV/Truncatable/client.rb +279 -0
- data/test/OBV/Truncatable/run_test.rb +69 -0
- data/test/OBV/Truncatable/server.ior +1 -0
- data/test/OBV/Truncatable/server.rb +89 -0
- data/test/OBV/ValueBox/client.rb +497 -0
- data/test/OBV/ValueBox/run_test.rb +69 -0
- data/test/OBV/ValueBox/server.ior +1 -0
- data/test/OBV/ValueBox/server.rb +271 -0
- data/test/OBV/ValueBox/valuebox.idl +101 -0
- data/test/OBV/ValueBox/vb_basic.idl +75 -0
- data/test/OBV/ValueBox/vb_struct.idl +68 -0
- data/test/OBV/ValueBox/vb_union.idl +21 -0
- data/test/Object/Test.idl +27 -0
- data/test/Object/client.rb +103 -0
- data/test/Object/run_test.rb +69 -0
- data/test/Object/server.ior +1 -0
- data/test/Object/server.rb +126 -0
- data/test/POA/Test.idl +27 -0
- data/test/POA/run_test.rb +52 -0
- data/test/POA/test.rb +112 -0
- data/test/Param_Test/Test.idl +182 -0
- data/test/Param_Test/client.rb +277 -0
- data/test/Param_Test/run_test.rb +69 -0
- data/test/Param_Test/server.ior +1 -0
- data/test/Param_Test/server.rb +296 -0
- data/test/Performance/Simple/Test.idl +27 -0
- data/test/Performance/Simple/client.rb +90 -0
- data/test/Performance/Simple/run_test.rb +69 -0
- data/test/Performance/Simple/server.ior +1 -0
- data/test/Performance/Simple/server.rb +95 -0
- data/test/Policies/Test.idl +27 -0
- data/test/Policies/run_test.rb +52 -0
- data/test/Policies/test.rb +144 -0
- data/test/Timeout/client.rb +207 -0
- data/test/Timeout/run_test.rb +69 -0
- data/test/Timeout/server.ior +1 -0
- data/test/Timeout/server.rb +109 -0
- data/test/Timeout/test.idl +19 -0
- data/test/lib/assert.rb +43 -0
- data/test/lib/test.rb +542 -0
- data/test/test_runner.rb +193 -0
- metadata +342 -0
@@ -0,0 +1,572 @@
|
|
1
|
+
# -*- Ruby -*-
|
2
|
+
#
|
3
|
+
# **** Code generated by the R2CORBA IDL Compiler ****
|
4
|
+
# R2CORBA has been developed by:
|
5
|
+
# Remedy IT
|
6
|
+
# Nijkerk, GLD
|
7
|
+
# The Netherlands
|
8
|
+
# http://www.remedy.nl http://www.theaceorb.nl
|
9
|
+
#
|
10
|
+
|
11
|
+
module R2CORBA
|
12
|
+
|
13
|
+
CORBA.implement('orb.idl', {}, CORBA::IDL::CLIENT_STUB) {
|
14
|
+
|
15
|
+
module CORBA
|
16
|
+
|
17
|
+
class AnySeq < Array
|
18
|
+
def AnySeq._tc
|
19
|
+
@@tc_AnySeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/AnySeq:1.0', 'AnySeq',
|
20
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_any), self)
|
21
|
+
end
|
22
|
+
end # typedef AnySeq
|
23
|
+
class BooleanSeq < Array
|
24
|
+
def BooleanSeq._tc
|
25
|
+
@@tc_BooleanSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/BooleanSeq:1.0', 'BooleanSeq',
|
26
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_boolean), self)
|
27
|
+
end
|
28
|
+
end # typedef BooleanSeq
|
29
|
+
class CharSeq < String
|
30
|
+
def CharSeq._tc
|
31
|
+
@@tc_CharSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/CharSeq:1.0', 'CharSeq',
|
32
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_char), self)
|
33
|
+
end
|
34
|
+
end # typedef CharSeq
|
35
|
+
class DoubleSeq < Array
|
36
|
+
def DoubleSeq._tc
|
37
|
+
@@tc_DoubleSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/DoubleSeq:1.0', 'DoubleSeq',
|
38
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_double), self)
|
39
|
+
end
|
40
|
+
end # typedef DoubleSeq
|
41
|
+
class FloatSeq < Array
|
42
|
+
def FloatSeq._tc
|
43
|
+
@@tc_FloatSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/FloatSeq:1.0', 'FloatSeq',
|
44
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_float), self)
|
45
|
+
end
|
46
|
+
end # typedef FloatSeq
|
47
|
+
class LongSeq < Array
|
48
|
+
def LongSeq._tc
|
49
|
+
@@tc_LongSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/LongSeq:1.0', 'LongSeq',
|
50
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_long), self)
|
51
|
+
end
|
52
|
+
end # typedef LongSeq
|
53
|
+
class LongLongSeq < Array
|
54
|
+
def LongLongSeq._tc
|
55
|
+
@@tc_LongLongSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/LongLongSeq:1.0', 'LongLongSeq',
|
56
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_longlong), self)
|
57
|
+
end
|
58
|
+
end # typedef LongLongSeq
|
59
|
+
class ShortSeq < Array
|
60
|
+
def ShortSeq._tc
|
61
|
+
@@tc_ShortSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ShortSeq:1.0', 'ShortSeq',
|
62
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_short), self)
|
63
|
+
end
|
64
|
+
end # typedef ShortSeq
|
65
|
+
class ULongSeq < Array
|
66
|
+
def ULongSeq._tc
|
67
|
+
@@tc_ULongSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ULongSeq:1.0', 'ULongSeq',
|
68
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_ulong), self)
|
69
|
+
end
|
70
|
+
end # typedef ULongSeq
|
71
|
+
class ULongLongSeq < Array
|
72
|
+
def ULongLongSeq._tc
|
73
|
+
@@tc_ULongLongSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ULongLongSeq:1.0', 'ULongLongSeq',
|
74
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_ulonglong), self)
|
75
|
+
end
|
76
|
+
end # typedef ULongLongSeq
|
77
|
+
class UShortSeq < Array
|
78
|
+
def UShortSeq._tc
|
79
|
+
@@tc_UShortSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/UShortSeq:1.0', 'UShortSeq',
|
80
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_ushort), self)
|
81
|
+
end
|
82
|
+
end # typedef UShortSeq
|
83
|
+
class WCharSeq < Array
|
84
|
+
def WCharSeq._tc
|
85
|
+
@@tc_WCharSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/WCharSeq:1.0', 'WCharSeq',
|
86
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_wchar), self)
|
87
|
+
end
|
88
|
+
end # typedef WCharSeq
|
89
|
+
class StringSeq < Array
|
90
|
+
def StringSeq._tc
|
91
|
+
@@tc_StringSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/StringSeq:1.0', 'StringSeq',
|
92
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_string), self)
|
93
|
+
end
|
94
|
+
end # typedef StringSeq
|
95
|
+
class WStringSeq < Array
|
96
|
+
def WStringSeq._tc
|
97
|
+
@@tc_WStringSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/WStringSeq:1.0', 'WStringSeq',
|
98
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_wstring), self)
|
99
|
+
end
|
100
|
+
end # typedef WStringSeq
|
101
|
+
class OctetSeq < String
|
102
|
+
def OctetSeq._tc
|
103
|
+
@@tc_OctetSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/OctetSeq:1.0', 'OctetSeq',
|
104
|
+
CORBA::TypeCode::Sequence.new(CORBA._tc_octet), self)
|
105
|
+
end
|
106
|
+
end # typedef OctetSeq
|
107
|
+
class PolicyType < CORBA::_tc_ulong.get_type
|
108
|
+
def PolicyType._tc; @@tc_PolicyType ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/PolicyType:1.0', 'PolicyType', CORBA::_tc_ulong, self); end
|
109
|
+
end # typedef PolicyType
|
110
|
+
|
111
|
+
module Policy ## interface
|
112
|
+
|
113
|
+
Id = 'IDL:omg.org/CORBA/Policy:1.0'.freeze
|
114
|
+
Ids = [ Id ].freeze
|
115
|
+
|
116
|
+
def Policy._tc; @@tc_Policy ||= CORBA::TypeCode::ObjectRef.new(Id, 'Policy', self); end
|
117
|
+
self._tc # register typecode
|
118
|
+
|
119
|
+
def Policy._narrow(obj)
|
120
|
+
return nil if CORBA.is_nil(obj)
|
121
|
+
return CORBA::Stub.create_stub(obj)._narrow!(self)
|
122
|
+
end
|
123
|
+
|
124
|
+
def Policy._duplicate(obj)
|
125
|
+
return nil if CORBA.is_nil(obj)
|
126
|
+
return CORBA::Stub.create_stub(super(obj))._narrow!(self)
|
127
|
+
end
|
128
|
+
|
129
|
+
def _interface_repository_id
|
130
|
+
CORBA::Policy::Id
|
131
|
+
end
|
132
|
+
|
133
|
+
|
134
|
+
def policy_type()
|
135
|
+
raise ::CORBA::NO_IMPLEMENT unless self.respond_to?(:_invoke, true)
|
136
|
+
_ret = self._invoke('_get_policy_type', {
|
137
|
+
:result_type => CORBA::PolicyType._tc})
|
138
|
+
_ret
|
139
|
+
end #of attribute policy_type getter
|
140
|
+
|
141
|
+
def copy()
|
142
|
+
raise ::CORBA::NO_IMPLEMENT unless self.respond_to?(:_invoke, true)
|
143
|
+
_ret = self._invoke('copy', {
|
144
|
+
:result_type => CORBA::Policy._tc})
|
145
|
+
_ret
|
146
|
+
end #of operation copy
|
147
|
+
|
148
|
+
def destroy()
|
149
|
+
raise ::CORBA::NO_IMPLEMENT unless self.respond_to?(:_invoke, true)
|
150
|
+
_ret = self._invoke('destroy', {
|
151
|
+
:result_type => CORBA._tc_void})
|
152
|
+
_ret
|
153
|
+
end #of operation destroy
|
154
|
+
end #of interface Policy
|
155
|
+
|
156
|
+
class PolicyList < Array
|
157
|
+
def PolicyList._tc
|
158
|
+
@@tc_PolicyList ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/PolicyList:1.0', 'PolicyList',
|
159
|
+
CORBA::TypeCode::Sequence.new(CORBA::Policy._tc), self)
|
160
|
+
end
|
161
|
+
end # typedef PolicyList
|
162
|
+
class PolicyTypeSeq < Array
|
163
|
+
def PolicyTypeSeq._tc
|
164
|
+
@@tc_PolicyTypeSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/PolicyTypeSeq:1.0', 'PolicyTypeSeq',
|
165
|
+
CORBA::TypeCode::Sequence.new(CORBA::PolicyType._tc), self)
|
166
|
+
end
|
167
|
+
end # typedef PolicyTypeSeq
|
168
|
+
|
169
|
+
class InvalidPolicies < CORBA::UserException
|
170
|
+
|
171
|
+
def InvalidPolicies._tc
|
172
|
+
@@tc_InvalidPolicies ||= CORBA::TypeCode::Except.new('IDL:omg.org/CORBA/InvalidPolicies:1.0'.freeze, 'InvalidPolicies',
|
173
|
+
[['indices', CORBA::UShortSeq._tc]], self)
|
174
|
+
end
|
175
|
+
self._tc # register typecode
|
176
|
+
attr_accessor :indices
|
177
|
+
def initialize(*param_)
|
178
|
+
@indices = param_.shift
|
179
|
+
end
|
180
|
+
|
181
|
+
end #of exception InvalidPolicies
|
182
|
+
|
183
|
+
module DomainManager ## interface
|
184
|
+
|
185
|
+
Id = 'IDL:omg.org/CORBA/DomainManager:1.0'.freeze
|
186
|
+
Ids = [ Id ].freeze
|
187
|
+
|
188
|
+
def DomainManager._tc; @@tc_DomainManager ||= CORBA::TypeCode::ObjectRef.new(Id, 'DomainManager', self); end
|
189
|
+
self._tc # register typecode
|
190
|
+
|
191
|
+
def DomainManager._narrow(obj)
|
192
|
+
return nil if CORBA.is_nil(obj)
|
193
|
+
return CORBA::Stub.create_stub(obj)._unchecked_narrow!(self)
|
194
|
+
end
|
195
|
+
|
196
|
+
def DomainManager._duplicate(obj)
|
197
|
+
obj
|
198
|
+
end
|
199
|
+
|
200
|
+
def _interface_repository_id
|
201
|
+
CORBA::DomainManager::Id
|
202
|
+
end
|
203
|
+
|
204
|
+
|
205
|
+
def get_domain_policy(policy_type)
|
206
|
+
raise ::CORBA::NO_IMPLEMENT.new(
|
207
|
+
'unimplemented operation on local interface',
|
208
|
+
1, ::CORBA::COMPLETED_NO)
|
209
|
+
end #of operation get_domain_policy
|
210
|
+
end #of interface DomainManager
|
211
|
+
|
212
|
+
module InterfaceDef; end ## interface forward
|
213
|
+
|
214
|
+
module ConstructionPolicy ## interface
|
215
|
+
|
216
|
+
include CORBA::Policy
|
217
|
+
|
218
|
+
Id = 'IDL:omg.org/CORBA/ConstructionPolicy:1.0'.freeze
|
219
|
+
Ids = [ Id,
|
220
|
+
CORBA::Policy::Id ].freeze
|
221
|
+
|
222
|
+
def ConstructionPolicy._tc; @@tc_ConstructionPolicy ||= CORBA::TypeCode::ObjectRef.new(Id, 'ConstructionPolicy', self); end
|
223
|
+
self._tc # register typecode
|
224
|
+
|
225
|
+
def ConstructionPolicy._narrow(obj)
|
226
|
+
return nil if CORBA.is_nil(obj)
|
227
|
+
return CORBA::Stub.create_stub(obj)._narrow!(self)
|
228
|
+
end
|
229
|
+
|
230
|
+
def ConstructionPolicy._duplicate(obj)
|
231
|
+
return nil if CORBA.is_nil(obj)
|
232
|
+
return CORBA::Stub.create_stub(super(obj))._narrow!(self)
|
233
|
+
end
|
234
|
+
|
235
|
+
def _interface_repository_id
|
236
|
+
CORBA::ConstructionPolicy::Id
|
237
|
+
end
|
238
|
+
|
239
|
+
|
240
|
+
def make_domain_manager(object_type, constr_policy)
|
241
|
+
raise ::CORBA::NO_IMPLEMENT unless self.respond_to?(:_invoke, true)
|
242
|
+
object_type = (CORBA::TypeCode.typecode_for_id('IDL:omg.org/CORBA/InterfaceDef:1.0') || CORBA::TypeCode::ObjectRef.new('IDL:omg.org/CORBA/InterfaceDef:1.0', 'InterfaceDef', CORBA::InterfaceDef)).validate(object_type)
|
243
|
+
constr_policy = CORBA._tc_boolean.validate(constr_policy)
|
244
|
+
_ret = self._invoke('make_domain_manager', {
|
245
|
+
:arg_list => [
|
246
|
+
['object_type', CORBA::ARG_IN, (CORBA::TypeCode.typecode_for_id('IDL:omg.org/CORBA/InterfaceDef:1.0') || CORBA::TypeCode::ObjectRef.new('IDL:omg.org/CORBA/InterfaceDef:1.0', 'InterfaceDef', CORBA::InterfaceDef)), object_type],
|
247
|
+
['constr_policy', CORBA::ARG_IN, CORBA._tc_boolean, constr_policy]],
|
248
|
+
:result_type => CORBA._tc_void})
|
249
|
+
_ret
|
250
|
+
end #of operation make_domain_manager
|
251
|
+
end #of interface ConstructionPolicy
|
252
|
+
|
253
|
+
class DomainManagersList < Array
|
254
|
+
def DomainManagersList._tc
|
255
|
+
@@tc_DomainManagersList ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/DomainManagersList:1.0', 'DomainManagersList',
|
256
|
+
CORBA::TypeCode::Sequence.new(CORBA::DomainManager._tc), self)
|
257
|
+
end
|
258
|
+
end # typedef DomainManagersList
|
259
|
+
class PolicyErrorCode < CORBA::_tc_short.get_type
|
260
|
+
def PolicyErrorCode._tc; @@tc_PolicyErrorCode ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/PolicyErrorCode:1.0', 'PolicyErrorCode', CORBA::_tc_short, self); end
|
261
|
+
end # typedef PolicyErrorCode
|
262
|
+
BAD_POLICY = 0
|
263
|
+
UNSUPPORTED_POLICY = 1
|
264
|
+
BAD_POLICY_TYPE = 2
|
265
|
+
BAD_POLICY_VALUE = 3
|
266
|
+
UNSUPPORTED_POLICY_VALUE = 4
|
267
|
+
|
268
|
+
class PolicyError < CORBA::UserException
|
269
|
+
|
270
|
+
def PolicyError._tc
|
271
|
+
@@tc_PolicyError ||= CORBA::TypeCode::Except.new('IDL:omg.org/CORBA/PolicyError:1.0'.freeze, 'PolicyError',
|
272
|
+
[['reason', CORBA::PolicyErrorCode._tc]], self)
|
273
|
+
end
|
274
|
+
self._tc # register typecode
|
275
|
+
attr_accessor :reason
|
276
|
+
def initialize(*param_)
|
277
|
+
@reason = param_.shift
|
278
|
+
end
|
279
|
+
|
280
|
+
end #of exception PolicyError
|
281
|
+
class SetOverrideType < ::Fixnum
|
282
|
+
def SetOverrideType._tc
|
283
|
+
@@tc_SetOverrideType ||= CORBA::TypeCode::Enum.new('IDL:omg.org/CORBA/SetOverrideType:1.0'.freeze, 'SetOverrideType', [
|
284
|
+
'SET_OVERRIDE',
|
285
|
+
'ADD_OVERRIDE'])
|
286
|
+
end
|
287
|
+
self._tc # register typecode
|
288
|
+
end # enum SetOverrideType
|
289
|
+
SET_OVERRIDE = 0
|
290
|
+
ADD_OVERRIDE = 1
|
291
|
+
|
292
|
+
module PolicyManager ## interface
|
293
|
+
|
294
|
+
Id = 'IDL:omg.org/CORBA/PolicyManager:1.0'.freeze
|
295
|
+
Ids = [ Id ].freeze
|
296
|
+
|
297
|
+
def PolicyManager._tc; @@tc_PolicyManager ||= CORBA::TypeCode::ObjectRef.new(Id, 'PolicyManager', self); end
|
298
|
+
self._tc # register typecode
|
299
|
+
|
300
|
+
def PolicyManager._narrow(obj)
|
301
|
+
return nil if CORBA.is_nil(obj)
|
302
|
+
return CORBA::Stub.create_stub(obj)._unchecked_narrow!(self)
|
303
|
+
end
|
304
|
+
|
305
|
+
def PolicyManager._duplicate(obj)
|
306
|
+
obj
|
307
|
+
end
|
308
|
+
|
309
|
+
def _interface_repository_id
|
310
|
+
CORBA::PolicyManager::Id
|
311
|
+
end
|
312
|
+
|
313
|
+
|
314
|
+
def get_policy_overrides(ts)
|
315
|
+
raise ::CORBA::NO_IMPLEMENT.new(
|
316
|
+
'unimplemented operation on local interface',
|
317
|
+
1, ::CORBA::COMPLETED_NO)
|
318
|
+
end #of operation get_policy_overrides
|
319
|
+
|
320
|
+
def set_policy_overrides(policies, set_add)
|
321
|
+
raise ::CORBA::NO_IMPLEMENT.new(
|
322
|
+
'unimplemented operation on local interface',
|
323
|
+
1, ::CORBA::COMPLETED_NO)
|
324
|
+
end #of operation set_policy_overrides
|
325
|
+
end #of interface PolicyManager
|
326
|
+
|
327
|
+
|
328
|
+
module Current ## interface
|
329
|
+
|
330
|
+
Id = 'IDL:omg.org/CORBA/Current:1.0'.freeze
|
331
|
+
Ids = [ Id ].freeze
|
332
|
+
|
333
|
+
def Current._tc; @@tc_Current ||= CORBA::TypeCode::ObjectRef.new(Id, 'Current', self); end
|
334
|
+
self._tc # register typecode
|
335
|
+
|
336
|
+
def Current._narrow(obj)
|
337
|
+
return nil if CORBA.is_nil(obj)
|
338
|
+
return CORBA::Stub.create_stub(obj)._unchecked_narrow!(self)
|
339
|
+
end
|
340
|
+
|
341
|
+
def Current._duplicate(obj)
|
342
|
+
obj
|
343
|
+
end
|
344
|
+
|
345
|
+
def _interface_repository_id
|
346
|
+
CORBA::Current::Id
|
347
|
+
end
|
348
|
+
|
349
|
+
end #of interface Current
|
350
|
+
|
351
|
+
|
352
|
+
module PolicyCurrent ## interface
|
353
|
+
|
354
|
+
include CORBA::PolicyManager
|
355
|
+
include CORBA::Current
|
356
|
+
|
357
|
+
Id = 'IDL:omg.org/CORBA/PolicyCurrent:1.0'.freeze
|
358
|
+
Ids = [ Id,
|
359
|
+
CORBA::PolicyManager::Id,
|
360
|
+
CORBA::Current::Id ].freeze
|
361
|
+
|
362
|
+
def PolicyCurrent._tc; @@tc_PolicyCurrent ||= CORBA::TypeCode::ObjectRef.new(Id, 'PolicyCurrent', self); end
|
363
|
+
self._tc # register typecode
|
364
|
+
|
365
|
+
def PolicyCurrent._narrow(obj)
|
366
|
+
return nil if CORBA.is_nil(obj)
|
367
|
+
return CORBA::Stub.create_stub(obj)._unchecked_narrow!(self)
|
368
|
+
end
|
369
|
+
|
370
|
+
def PolicyCurrent._duplicate(obj)
|
371
|
+
obj
|
372
|
+
end
|
373
|
+
|
374
|
+
def _interface_repository_id
|
375
|
+
CORBA::PolicyCurrent::Id
|
376
|
+
end
|
377
|
+
|
378
|
+
end #of interface PolicyCurrent
|
379
|
+
|
380
|
+
class ServiceType < CORBA::_tc_ushort.get_type
|
381
|
+
def ServiceType._tc; @@tc_ServiceType ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ServiceType:1.0', 'ServiceType', CORBA::_tc_ushort, self); end
|
382
|
+
end # typedef ServiceType
|
383
|
+
class ServiceOption < CORBA::_tc_ulong.get_type
|
384
|
+
def ServiceOption._tc; @@tc_ServiceOption ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ServiceOption:1.0', 'ServiceOption', CORBA::_tc_ulong, self); end
|
385
|
+
end # typedef ServiceOption
|
386
|
+
class ServiceDetailType < CORBA::_tc_ulong.get_type
|
387
|
+
def ServiceDetailType._tc; @@tc_ServiceDetailType ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ServiceDetailType:1.0', 'ServiceDetailType', CORBA::_tc_ulong, self); end
|
388
|
+
end # typedef ServiceDetailType
|
389
|
+
class ServiceDetailData < CORBA::OctetSeq
|
390
|
+
def ServiceDetailData._tc; @@tc_ServiceDetailData ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ServiceDetailData:1.0', 'ServiceDetailData',CORBA::OctetSeq._tc, self); end
|
391
|
+
end # typedef ServiceDetailData
|
392
|
+
class ServiceOptionSeq < Array
|
393
|
+
def ServiceOptionSeq._tc
|
394
|
+
@@tc_ServiceOptionSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ServiceOptionSeq:1.0', 'ServiceOptionSeq',
|
395
|
+
CORBA::TypeCode::Sequence.new(CORBA::ServiceOption._tc), self)
|
396
|
+
end
|
397
|
+
end # typedef ServiceOptionSeq
|
398
|
+
Security = 1
|
399
|
+
|
400
|
+
class ServiceDetail < CORBA::Portable::Struct
|
401
|
+
|
402
|
+
def ServiceDetail._tc
|
403
|
+
@@tc_ServiceDetail ||= CORBA::TypeCode::Struct.new('IDL:omg.org/CORBA/ServiceDetail:1.0'.freeze, 'ServiceDetail',
|
404
|
+
[['service_detail_type', CORBA::ServiceDetailType._tc],
|
405
|
+
['service_detail', CORBA::ServiceDetailData._tc]], self)
|
406
|
+
end
|
407
|
+
self._tc # register typecode
|
408
|
+
attr_accessor :service_detail_type
|
409
|
+
attr_accessor :service_detail
|
410
|
+
def initialize(*param_)
|
411
|
+
@service_detail_type = param_.shift
|
412
|
+
@service_detail = param_.shift
|
413
|
+
end
|
414
|
+
|
415
|
+
end #of struct ServiceDetail
|
416
|
+
class ServiceDetailSeq < Array
|
417
|
+
def ServiceDetailSeq._tc
|
418
|
+
@@tc_ServiceDetailSeq ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ServiceDetailSeq:1.0', 'ServiceDetailSeq',
|
419
|
+
CORBA::TypeCode::Sequence.new(CORBA::ServiceDetail._tc), self)
|
420
|
+
end
|
421
|
+
end # typedef ServiceDetailSeq
|
422
|
+
|
423
|
+
class ServiceInformation < CORBA::Portable::Struct
|
424
|
+
|
425
|
+
def ServiceInformation._tc
|
426
|
+
@@tc_ServiceInformation ||= CORBA::TypeCode::Struct.new('IDL:omg.org/CORBA/ServiceInformation:1.0'.freeze, 'ServiceInformation',
|
427
|
+
[['service_options', CORBA::ServiceOptionSeq._tc],
|
428
|
+
['service_details', CORBA::ServiceDetailSeq._tc]], self)
|
429
|
+
end
|
430
|
+
self._tc # register typecode
|
431
|
+
attr_accessor :service_options
|
432
|
+
attr_accessor :service_details
|
433
|
+
def initialize(*param_)
|
434
|
+
@service_options = param_.shift
|
435
|
+
@service_details = param_.shift
|
436
|
+
end
|
437
|
+
|
438
|
+
end #of struct ServiceInformation
|
439
|
+
class ORBid < String
|
440
|
+
def ORBid._tc; @@tc_ORBid ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/ORBid:1.0', 'ORBid', CORBA::_tc_string, self); end
|
441
|
+
end # typedef ORBid
|
442
|
+
class Flags < CORBA::_tc_ulong.get_type
|
443
|
+
def Flags._tc; @@tc_Flags ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/Flags:1.0', 'Flags', CORBA::_tc_ulong, self); end
|
444
|
+
end # typedef Flags
|
445
|
+
class Identifier < String
|
446
|
+
def Identifier._tc; @@tc_Identifier ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/Identifier:1.0', 'Identifier', CORBA::_tc_string, self); end
|
447
|
+
end # typedef Identifier
|
448
|
+
class RepositoryId < String
|
449
|
+
def RepositoryId._tc; @@tc_RepositoryId ||= CORBA::TypeCode::Alias.new('IDL:omg.org/CORBA/RepositoryId:1.0', 'RepositoryId', CORBA::_tc_string, self); end
|
450
|
+
end # typedef RepositoryId
|
451
|
+
class TypeCode; end ## interface forward
|
452
|
+
class TCKind < ::Fixnum
|
453
|
+
def TCKind._tc
|
454
|
+
@@tc_TCKind ||= CORBA::TypeCode::Enum.new('IDL:omg.org/CORBA/TCKind:1.0'.freeze, 'TCKind', [
|
455
|
+
'Tk_null',
|
456
|
+
'Tk_void',
|
457
|
+
'Tk_short',
|
458
|
+
'Tk_long',
|
459
|
+
'Tk_ushort',
|
460
|
+
'Tk_ulong',
|
461
|
+
'Tk_float',
|
462
|
+
'Tk_double',
|
463
|
+
'Tk_boolean',
|
464
|
+
'Tk_char',
|
465
|
+
'Tk_octet',
|
466
|
+
'Tk_any',
|
467
|
+
'Tk_TypeCode',
|
468
|
+
'Tk_Principal',
|
469
|
+
'Tk_objref',
|
470
|
+
'Tk_struct',
|
471
|
+
'Tk_union',
|
472
|
+
'Tk_enum',
|
473
|
+
'Tk_string',
|
474
|
+
'Tk_sequence',
|
475
|
+
'Tk_array',
|
476
|
+
'Tk_alias',
|
477
|
+
'Tk_except',
|
478
|
+
'Tk_longlong',
|
479
|
+
'Tk_ulonglong',
|
480
|
+
'Tk_longdouble',
|
481
|
+
'Tk_wchar',
|
482
|
+
'Tk_wstring',
|
483
|
+
'Tk_fixed',
|
484
|
+
'Tk_value',
|
485
|
+
'Tk_value_box',
|
486
|
+
'Tk_native',
|
487
|
+
'Tk_abstract_interface',
|
488
|
+
'Tk_local_interface',
|
489
|
+
'Tk_component',
|
490
|
+
'Tk_home',
|
491
|
+
'Tk_event'])
|
492
|
+
end
|
493
|
+
self._tc # register typecode
|
494
|
+
end # enum TCKind
|
495
|
+
Tk_null = 0
|
496
|
+
Tk_void = 1
|
497
|
+
Tk_short = 2
|
498
|
+
Tk_long = 3
|
499
|
+
Tk_ushort = 4
|
500
|
+
Tk_ulong = 5
|
501
|
+
Tk_float = 6
|
502
|
+
Tk_double = 7
|
503
|
+
Tk_boolean = 8
|
504
|
+
Tk_char = 9
|
505
|
+
Tk_octet = 10
|
506
|
+
Tk_any = 11
|
507
|
+
Tk_TypeCode = 12
|
508
|
+
Tk_Principal = 13
|
509
|
+
Tk_objref = 14
|
510
|
+
Tk_struct = 15
|
511
|
+
Tk_union = 16
|
512
|
+
Tk_enum = 17
|
513
|
+
Tk_string = 18
|
514
|
+
Tk_sequence = 19
|
515
|
+
Tk_array = 20
|
516
|
+
Tk_alias = 21
|
517
|
+
Tk_except = 22
|
518
|
+
Tk_longlong = 23
|
519
|
+
Tk_ulonglong = 24
|
520
|
+
Tk_longdouble = 25
|
521
|
+
Tk_wchar = 26
|
522
|
+
Tk_wstring = 27
|
523
|
+
Tk_fixed = 28
|
524
|
+
Tk_value = 29
|
525
|
+
Tk_value_box = 30
|
526
|
+
Tk_native = 31
|
527
|
+
Tk_abstract_interface = 32
|
528
|
+
Tk_local_interface = 33
|
529
|
+
Tk_component = 34
|
530
|
+
Tk_home = 35
|
531
|
+
Tk_event = 36
|
532
|
+
|
533
|
+
class WrongTransaction < CORBA::UserException
|
534
|
+
|
535
|
+
def WrongTransaction._tc
|
536
|
+
@@tc_WrongTransaction ||= CORBA::TypeCode::Except.new('IDL:omg.org/CORBA/WrongTransaction:1.0'.freeze, 'WrongTransaction', self)
|
537
|
+
end
|
538
|
+
self._tc # register typecode
|
539
|
+
end #of exception WrongTransaction
|
540
|
+
module ORB
|
541
|
+
|
542
|
+
|
543
|
+
class InvalidName < CORBA::UserException
|
544
|
+
|
545
|
+
def InvalidName._tc
|
546
|
+
@@tc_InvalidName ||= CORBA::TypeCode::Except.new('IDL:omg.org/CORBA/ORB/InvalidName:1.0'.freeze, 'InvalidName', self)
|
547
|
+
end
|
548
|
+
self._tc # register typecode
|
549
|
+
end #of exception InvalidName
|
550
|
+
end #of module ORB
|
551
|
+
|
552
|
+
class ExceptionList; end ## 'native' type
|
553
|
+
class NamedValue; end ## 'native' type
|
554
|
+
class Exception_type < ::Fixnum
|
555
|
+
def Exception_type._tc
|
556
|
+
@@tc_Exception_type ||= CORBA::TypeCode::Enum.new('IDL:omg.org/CORBA/exception_type:1.0'.freeze, 'Exception_type', [
|
557
|
+
'NO_EXCEPTION',
|
558
|
+
'USER_EXCEPTION',
|
559
|
+
'SYSTEM_EXCEPTION'])
|
560
|
+
end
|
561
|
+
self._tc # register typecode
|
562
|
+
end # enum Exception_type
|
563
|
+
NO_EXCEPTION = 0
|
564
|
+
USER_EXCEPTION = 1
|
565
|
+
SYSTEM_EXCEPTION = 2
|
566
|
+
class ValueFactory; end ## 'native' type
|
567
|
+
end #of module CORBA
|
568
|
+
|
569
|
+
} ## end of 'orb.idl'
|
570
|
+
end #of module R2CORBA
|
571
|
+
|
572
|
+
# -*- END -*-
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# require.rb - R2CORBA loader
|
3
|
+
#
|
4
|
+
# Author: Martin Corino
|
5
|
+
#
|
6
|
+
# This program is free software; you can redistribute it and/or
|
7
|
+
# modify it under the terms of the R2CORBA LICENSE which is
|
8
|
+
# included with this program.
|
9
|
+
#
|
10
|
+
# Copyright (c) Remedy IT Expertise BV
|
11
|
+
# Chamber of commerce Rotterdam nr.276339, The Netherlands
|
12
|
+
#--------------------------------------------------------------------
|
13
|
+
|
14
|
+
require 'corba/idl/IDL.rb'
|
15
|
+
require 'corba/idl/r2c_orb.rb'
|
16
|
+
|
17
|
+
## fake Ruby into believing 'orb.rb' has already been loaded
|
18
|
+
## which is what the IDL compiler will generate for
|
19
|
+
## '#include "orb.idl"'
|
20
|
+
$" << 'orb.rb'
|