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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
// This is a copy of the multiple_inheritance_abstract test
%module multiple_inheritance_nspace
%warnfilter(SWIGWARN_RUBY_MULTIPLE_INHERITANCE,
SWIGWARN_D_MULTIPLE_INHERITANCE,
SWIGWARN_PHP_MULTIPLE_INHERITANCE); /* languages not supporting multiple inheritance or %interface */
// nspace feature only supported by these languages
#if defined(SWIGJAVA) || defined(SWIGCSHARP) || defined(SWIGD) || defined(SWIGLUA) || defined(SWIGJAVASCRIPT)
%nspace;
#endif
#if defined(SWIGJAVA) || defined(SWIGCSHARP)
%include "swiginterface.i"
%interface(Space::ABase1)
%interface(Space::CBase1)
%interface(Space::CBase2)
#endif
#if defined(SWIGD)
// Missing multiple inheritance support results in incorrect use of override
%ignore CBase1;
%ignore CBase2;
#endif
#if defined(SWIGJAVA)
SWIG_JAVABODY_PROXY(public, public, SWIGTYPE)
#endif
%inline %{
namespace Space {
struct CBase1 {
virtual void cbase1x() {
return;
}
virtual int cbase1y() {
return 1;
}
int cbase1z() {
return 10;
}
virtual ~CBase1() {
}
};
struct CBase2 {
virtual int cbase2() {
return 2;
}
virtual ~CBase2() {
}
};
struct ABase1 {
virtual int abase1() = 0;
virtual ~ABase1() {
}
};
struct Derived1 : CBase2, CBase1 {
virtual void cbase1x() {
return;
}
virtual int cbase1y() {
return 3;
}
virtual int cbase2() {
return 4;
}
virtual CBase2 *cloneit() {
return new Derived1(*this);
}
void derived1() {
}
};
struct Derived2 : CBase1, ABase1 {
virtual void cbase1x() {
return;
}
virtual int cbase1y() {
return 6;
}
virtual int abase1() {
return 5;
}
virtual CBase1 *cloneit() {
return new Derived2(*this);
}
void derived2() {
}
};
struct Derived3 : ABase1, CBase1, CBase2 {
virtual int cbase1y() {
return 7;
}
virtual int cbase2() {
return 8;
}
virtual int abase1() {
return 9;
}
virtual void cbase1x() {
}
virtual ABase1 *cloneit() {
return new Derived3(*this);
}
void derived3() {
}
};
struct Bottom1 : Derived1 {
virtual void cbase1x() {
return;
}
virtual int cbase1y() {
return 103;
}
virtual int cbase2() {
return 104;
}
};
struct Bottom2 : Derived2 {
virtual int cbase1y() {
return 206;
}
virtual int abase1() {
return 205;
}
};
struct Bottom3 : Derived3 {
virtual int cbase1y() {
return 307;
}
virtual int cbase2() {
return 308;
}
virtual int abase1() {
return 309;
}
};
// Base classes as input
int InputValCBase1(CBase1 cb1) {
return cb1.cbase1y();
}
int InputValCBase2(CBase2 cb2) {
return cb2.cbase2();
}
int InputPtrABase1(ABase1 *pab1) {
return pab1->abase1();
}
int InputPtrCBase1(CBase1 *pcb1) {
return pcb1->cbase1y();
}
int InputPtrCBase2(CBase2 *pcb2) {
return pcb2->cbase2();
}
int InputRefABase1(ABase1 &rab1) {
return rab1.abase1();
}
int InputRefCBase1(CBase1 &rcb1) {
return rcb1.cbase1y();
}
int InputRefCBase2(CBase2 &rcb2) {
return rcb2.cbase2();
}
int InputCPtrRefABase1(ABase1 *const& pab1) {
return pab1->abase1();
}
int InputCPtrRefCBase1(CBase1 *const& pcb1) {
return pcb1->cbase1y();
}
int InputCPtrRefCBase2(CBase2 *const& pcb2) {
return pcb2->cbase2();
}
// Derived classes as input
int InputValDerived1(Derived1 d) {
return d.cbase1y() + d.cbase2();
}
int InputValDerived2(Derived2 d) {
return d.cbase1y() + d.abase1();
}
int InputValDerived3(Derived3 d) {
return d.cbase1y() + d.cbase2() + d.abase1();
}
int InputRefDerived1(Derived1 &d) {
return d.cbase1y() + d.cbase2();
}
int InputRefDerived2(Derived2 &d) {
return d.cbase1y() + d.abase1();
}
int InputRefDerived3(Derived3 &d) {
return d.cbase1y() + d.cbase2() + d.abase1();
}
int InputPtrDerived1(Derived1 *d) {
return d->cbase1y() + d->cbase2();
}
int InputPtrDerived2(Derived2 *d) {
return d->cbase1y() + d->abase1();
}
int InputPtrDerived3(Derived3 *d) {
return d->cbase1y() + d->cbase2() + d->abase1();
}
int InputCPtrRefDerived1(Derived1 *const& d) {
return d->cbase1y() + d->cbase2();
}
int InputCPtrRefDerived2(Derived2 *const& d) {
return d->cbase1y() + d->abase1();
}
int InputCPtrRefDerived3(Derived3 *const& d) {
return d->cbase1y() + d->cbase2() + d->abase1();
}
// Bottom classes as input
int InputValBottom1(Bottom1 d) {
return d.cbase1y() + d.cbase2();
}
int InputValBottom2(Bottom2 d) {
return d.cbase1y() + d.abase1();
}
int InputValBottom3(Bottom3 d) {
return d.cbase1y() + d.cbase2() + d.abase1();
}
int InputRefBottom1(Bottom1 &d) {
return d.cbase1y() + d.cbase2();
}
int InputRefBottom2(Bottom2 &d) {
return d.cbase1y() + d.abase1();
}
int InputRefBottom3(Bottom3 &d) {
return d.cbase1y() + d.cbase2() + d.abase1();
}
int InputPtrBottom1(Bottom1 *d) {
return d->cbase1y() + d->cbase2();
}
int InputPtrBottom2(Bottom2 *d) {
return d->cbase1y() + d->abase1();
}
int InputPtrBottom3(Bottom3 *d) {
return d->cbase1y() + d->cbase2() + d->abase1();
}
int InputCPtrRefBottom1(Bottom1 *const& d) {
return d->cbase1y() + d->cbase2();
}
int InputCPtrRefBottom2(Bottom2 *const& d) {
return d->cbase1y() + d->abase1();
}
int InputCPtrRefBottom3(Bottom3 *const& d) {
return d->cbase1y() + d->cbase2() + d->abase1();
}
// Return pointers
CBase1 *MakePtrDerived1_CBase1() {
return new Derived1();
}
CBase2 *MakePtrDerived1_CBase2() {
return new Derived1();
}
CBase1 *MakePtrDerived2_CBase1() {
return new Derived2();
}
ABase1 *MakePtrDerived2_ABase1() {
return new Derived2();
}
ABase1 *MakePtrDerived3_ABase1() {
return new Derived3();
}
CBase1 *MakePtrDerived3_CBase1() {
return new Derived3();
}
CBase2 *MakePtrDerived3_CBase2() {
return new Derived3();
}
// Return references
CBase1 &MakeRefDerived1_CBase1() {
static Derived1 d;
return d;
}
CBase2 &MakeRefDerived1_CBase2() {
static Derived1 d;
return d;
}
CBase1 &MakeRefDerived2_CBase1() {
static Derived2 d;
return d;
}
ABase1 &MakeRefDerived2_ABase1() {
static Derived2 d;
return d;
}
ABase1 &MakeRefDerived3_ABase1() {
static Derived3 d;
return d;
}
CBase1 &MakeRefDerived3_CBase1() {
static Derived3 d;
return d;
}
CBase2 &MakeRefDerived3_CBase2() {
static Derived3 d;
return d;
}
// Return by value (sliced objects)
CBase1 MakeValDerived1_CBase1() {
return Derived1();
}
CBase2 MakeValDerived1_CBase2() {
return Derived1();
}
CBase1 MakeValDerived2_CBase1() {
return Derived2();
}
CBase1 MakeValDerived3_CBase1() {
return Derived3();
}
CBase2 MakeValDerived3_CBase2() {
return Derived3();
}
}
%}
|