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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
|
// PR c++/82836
// { dg-do compile { target c++17 } }
// { dg-require-effective-target int128 }
// { dg-require-effective-target __float128 }
// { dg-additional-options "-Wno-pedantic -Wno-return-type" }
// { dg-add-options __float128 }
// We were resetting DECL_ASSEMBLER_NAME when processing pragma weak,
// breaking C++'s mangling alias hash table. That hash table needs to
// be tickled in just the right way to hit the problem.
namespace std {
typedef __SIZE_TYPE__ size_t;
inline namespace __cxx11 {}
double abs() {return 0;}
__int128 abs(__int128 ) {return 0;}
__float128 abs(__float128 ) {return 0;}
#pragma weak pthread_create
typedef int luaL_Reg;
typedef int swig_lua_const_info;
typedef int swig_lua_attribute;
typedef int swig_lua_class;
}
static int swig_types;
static int swig_module;
namespace std {
template < typename > class allocator;
template < class > struct char_traits;
namespace __cxx11 {
template < typename _CharT, typename = _CharT ,
typename = _CharT >
class basic_string;
typedef basic_string< char > string;
}
}
namespace __gnu_cxx {
template < typename > struct __numeric_traits_integer;
struct __conditional_type {
typedef __numeric_traits_integer< int > __type;
}__is_null_pointer0;
template < typename _Value > struct __numeric_traits_integer {
static const _Value __min = 0;
static const _Value __max = 0;
};
template < typename _Value >
const _Value __numeric_traits_integer< _Value >::__min;
template < typename _Value >
const _Value __numeric_traits_integer< _Value >::__max;
template < typename >
struct __numeric_traits : __conditional_type::__type {};
}
namespace std {
template < typename _Tp, _Tp __v > struct integral_constant {
static constexpr _Tp value = __v;
};
template < typename _Tp, _Tp __v >
constexpr _Tp integral_constant< _Tp, __v >::value;
typedef integral_constant< bool, false > false_type;
struct __is_void_helper : false_type {};
struct is_void : __is_void_helper{};
template < int > struct conditional ;
template < typename , typename ,
template < typename... > class >
struct __detector {
;
};
template < typename _Default, template < typename > class _Op>
using __detected_or = __detector< _Default, void, _Op>;
template < typename _Default, template < typename> class _Op
>
using __detected_or_t =
typename __detected_or< _Default, _Op>::type;
struct {}piecewise_construct ;
struct random_access_iterator_tag ;
template < typename , typename > struct iterator {
typedef int difference_type;
typedef int reference;
};
using __make_not_void = conditional< is_void::value >;
struct pointer_traits
;
template <> struct char_traits< char > {
typedef char char_type;
typedef int int_type;
void assign() {}
bool eq() {return 0;}
bool lt() {return 0;}
int compare() {return 0;}
size_t length() {return 0;}
char_type find() {return 0;}
char_type move() {return 0;}
char_type copy() {return 0;}
char_type assign(char_type ) {return 0;}
char_type to_char_type() {return 0;}
int_type to_int_type() {return 0;}
bool eq_int_type() {return 0;}
int_type eof() {return 0;}
int_type not_eof() {return 0;}
};
template <> struct char_traits< wchar_t > {
typedef wchar_t char_type;
typedef int int_type;
void assign() {}
bool eq() {return 0;}
bool lt() {return 0;}
int compare() {return 0;}
size_t length() {return 0;}
char_type find() {return 0;}
char_type move() {return 0;}
char_type copy() {return 0;}
char_type assign(char_type ) {return 0;}
char_type to_char_type() {return 0;}
int_type to_int_type() {return 0;}
bool eq_int_type() {return 0;}
int_type eof() {return 0;}
int_type not_eof() {return 0;}
};
}
typedef int uint_least16_t;
typedef int uint_least32_t;
namespace std {
template <> struct char_traits< char16_t > {
typedef char16_t char_type;
typedef uint_least16_t int_type;
void assign() {}
bool eq() {return false;}
bool lt() {return false;}
int compare() {return 0;}
size_t length() {return 0;}
char_type find() {return 0;}
char_type move() {return 0;}
char_type copy() {return 0;}
char_type assign(char_type ) {return 0;}
char_type to_char_type() {return 0;}
int_type to_int_type() {return 0;}
bool eq_int_type() {return false;}
int_type eof() {return 0;}
int_type not_eof() {return 0;}
};
template <> struct char_traits< char32_t > {
typedef char32_t char_type;
typedef uint_least32_t int_type;
void assign() {}
bool eq() {return false;}
bool lt() {return false;}
int compare() {return 0;}
size_t length() {return 0;}
char_type find() {return 0;}
char_type move() {return 0;}
char_type copy() {return 0;}
char_type assign(char_type ) {return 0;}
char_type to_char_type() {return 0;}
int_type to_int_type() {return 0;}
bool eq_int_type() {return false;}
int_type eof() {return 0;}
int_type not_eof() {return 0;}
};
}
void *operator new(std::size_t) {return (void *)1;}
void *operator new[](std::size_t) {return (void *)1;}
void operator delete(void *){}
void operator delete[](void *) {}
namespace {
;
}
namespace std {
template < typename > class allocator {
public:
~allocator();
}
;
template < typename _Tp >
struct less {
bool operator()( _Tp , _Tp ) {return false;}
};
}
typedef int _Atomic_word;
namespace {
_Atomic_word __exchange_and_add_single0;
static void __atomic_add_single();
_Atomic_word __attribute____exchange_and_add_dispatch0;
static void __attribute____atomic_add_dispatch();
}
namespace std {
struct __allocator_traits_base {
template < typename = void > struct __rebind {
using type =
allocator< char >;
}
;
};
template < typename , typename >
using __alloc_rebind =
__allocator_traits_base::__rebind<>::type;
template < typename >
struct allocator_traits {
template < typename _Tp >
using rebind_alloc = __alloc_rebind< char , _Tp >;
};
}
namespace __gnu_cxx {
template < typename >
struct __alloc_traits : std::allocator_traits< std::allocator< char > > {
template < typename > struct rebind {
typedef rebind_alloc< int >
other;
};
};
}
namespace std {
namespace __cxx11 {
template < typename , typename , typename >
class basic_string {
typedef __gnu_cxx::__alloc_traits< char >::
rebind< int >::other _Char_alloc_type
;
struct : _Char_alloc_type {}_M_dataplus;
int _S_compare() {
if (__gnu_cxx::__numeric_traits< int >::__max)
(__gnu_cxx::__numeric_traits< int >::__min)
;
return 0;
}
};
}
template < typename _CharT, typename _Traits, typename _Alloc >
basic_string< _Traits> operator+(
basic_string< _Alloc > );
template < typename _CharT, typename _Traits, typename _Alloc >
basic_string< _Traits> operator+(
_Alloc );
template < typename _CharT, typename _Traits, typename _Alloc >
basic_string< _Traits> operator+(
_Alloc );
template < typename , typename > struct __hash_base ;
template < typename > struct hash;
template <> struct hash< char > {
void operator0() {}
};
template <> struct hash< signed char > {
void operator0() {}
};
template <> struct hash< unsigned char > {
void operator0() {}
};
template <> struct hash< wchar_t > {
void operator0() {}
};
template <> struct __hash_base< size_t, char16_t > {
size_t operator0() {return 0;}
};
template <> struct __hash_base< size_t, char32_t > {
size_t operator0() {return 0;}
};
template <> struct hash< short > {
void operator0() {}
};
template <> struct hash< int > {
void operator0() {}
};
template <> struct hash< long > {
void operator0() {}
};
template <> struct hash< long long > {
void operator0() {}
};
template <> struct hash< unsigned short > {
void operator0() {}
};
template <> struct hash< unsigned > {
void operator0() {}
};
template <> struct hash< unsigned long > {
void operator0() {}
};
template <> struct hash< unsigned long long > {
void operator0() {}
};
template <> struct hash< __int128 > {
void operator0() {}
};
template <> struct hash< __int128 unsigned > {
void operator0() {}
};
typedef long _Bit_type;
struct _Bit_reference {
;
_Bit_type _M_mask;
_Bit_reference () {}
operator bool() {return false;}
_Bit_reference (bool ) {}
_Bit_reference operator=(_Bit_reference ) {return *this;}
bool operator==(_Bit_reference ) {return false;}
bool operator<(_Bit_reference ) {return false;}
void flip() {}
};
void swap() {}
void swap(bool ) {}
void swap(_Bit_reference ) {}
struct _Bit_iterator_base
:iterator< random_access_iterator_tag, bool > {
_Bit_type *_M_p;
int _M_offset;
_Bit_iterator_base(_Bit_type *, int
_M_offset) {}
void _M_bump_up() {}
void _M_bump_down() {}
void _M_incr() {}
bool operator==(_Bit_iterator_base ) {return false;}
bool operator<(_Bit_iterator_base ) {return false;}
bool operator!=(_Bit_iterator_base ) {return false;}
bool operator>(_Bit_iterator_base ) {return false;}
bool operator<=(_Bit_iterator_base ) {return false;}
bool operator>=(_Bit_iterator_base ) {return false;}
};
struct _Bit_iterator : _Bit_iterator_base {
_Bit_iterator() : _Bit_iterator_base(0, 0) {}
_Bit_iterator(_Bit_type *__x, int __y)
: _Bit_iterator_base(__x, __y) {}
iterator _M_const_cast() {return iterator ();}
iterator operator+() {return iterator ();}
iterator operator-() {return iterator ();}
reference operator[](difference_type ) {return 0;}
};
void operator+(_Bit_iterator ) {}
struct _Bit_const_iterator : _Bit_iterator_base {
_Bit_const_iterator() : _Bit_iterator_base(0, 0) {}
_Bit_type _Bit_const_iterator___x;
_Bit_const_iterator(int __y)
: _Bit_iterator_base(&_Bit_const_iterator___x, __y) {}
_Bit_const_iterator(_Bit_iterator __x)
: _Bit_iterator_base(_M_p, _M_offset) {}
void _M_const_cast() {}
void operator*() {}
void operator++() {}
void operator++(int) {}
void operator--() {}
};
class runtime_error {
public:
runtime_error(const string );
};
inline namespace _V2 {
class error_category {
bool operator<(error_category __other) {
less< error_category * >()(this, &__other);
return false;
}
bool operator==(error_category ) {return false;}
bool operator!=(error_category ) {return false;}
};
}
struct error_code {
error_code() : _M_cat() {}
error_code(error_category ) : _M_cat() {}
void assign() {}
void clear() {}
int value() {return 0;}
error_category category() {return error_category ();}
string message() {return string();}
error_category _M_cat;
};
inline error_code make_error_code() noexcept {return error_code ();}
inline bool operator<(const error_code ,
const error_code ) noexcept {return false;}
struct error_condition {
error_condition() {}
error_condition(const error_category ) {}
void assign() noexcept {}
void clear() noexcept {}
int value() {return 0;}
const error_category category() {return error_category ();}
string message_M_cat;
};
inline error_condition make_error_condition() noexcept {return error_condition ();}
inline bool operator<(const error_condition ,
const error_condition ) noexcept {return false;}
inline bool operator==(const error_code ,
const error_code ) noexcept {return false;}
inline bool operator==(const error_code ,
const error_condition ) noexcept {return false;}
inline bool operator==(const error_condition ,
const error_code ) noexcept {return false;}
inline bool operator==(const error_condition ,
const error_condition ) noexcept {return false;}
inline bool operator!=(const error_code ,
const error_code ) noexcept {return false;}
inline bool operator!=(const error_code ,
const error_condition ) noexcept {return false;}
inline bool operator!=(const error_condition ,
const error_code ) noexcept {return false;}
inline bool operator!=(const error_condition ,
const error_condition ) noexcept {return false;}
class system_error : public runtime_error {
error_code _M_code;
system_error(error_code __ec = error_code())
: runtime_error(__ec.message()) {}
system_error(error_code __ec, const string &__what)
: runtime_error(__ec.message()) {}
system_error(error_code __ec, const char *__what)
: runtime_error((__ec.message())) {}
system_error(const char )
: system_error() {}
system_error(const error_category )
: runtime_error(error_code().message()) {}
system_error(const string &__what)
: runtime_error(error_code().message()) {}
const error_code code() {return error_code ();}
void operator0() {}
};
enum _Ios_Fmtflags {};
_Ios_Fmtflags operator&(_Ios_Fmtflags &__a) {return __a;}
_Ios_Fmtflags operator|(_Ios_Fmtflags &__a,
_Ios_Fmtflags __b) {return __a;}
_Ios_Fmtflags operator^(_Ios_Fmtflags &__a,
_Ios_Fmtflags __b) {return __a;}
_Ios_Fmtflags operator~(_Ios_Fmtflags &__a) {return __a;}
_Ios_Fmtflags &operator|=(_Ios_Fmtflags &__a,
_Ios_Fmtflags __b) {return __a;}
_Ios_Fmtflags &operator&=(_Ios_Fmtflags &__a,
_Ios_Fmtflags __b) {return __a;}
_Ios_Fmtflags &operator^=(_Ios_Fmtflags &__a,
_Ios_Fmtflags __b) {return __a;}
enum _Ios_Openmode {
_S_ios_openmode_max };
_Ios_Openmode operator&(_Ios_Openmode &__a__b) {return __a__b;}
_Ios_Openmode operator|(_Ios_Openmode &__a,
_Ios_Openmode __b) {return __a;}
_Ios_Openmode operator^(_Ios_Openmode &__a,
_Ios_Openmode __b) {return __a;}
_Ios_Openmode operator~(_Ios_Openmode &__a) {return __a;}
_Ios_Openmode &operator|=(_Ios_Openmode &__a,
_Ios_Openmode __b) {return __a;}
_Ios_Openmode &operator&=(_Ios_Openmode &__a,
_Ios_Openmode __b) {return __a;}
_Ios_Openmode &operator^=(_Ios_Openmode &__a,
_Ios_Openmode __b) {return __a;}
enum _Ios_Iostate {
_S_ios_iostate_max };
_Ios_Iostate operator&(_Ios_Iostate &__a__b) {return __a__b;}
_Ios_Iostate operator|(_Ios_Iostate &__a, _Ios_Iostate __b) {return __a;}
_Ios_Iostate operator^(_Ios_Iostate &__a, _Ios_Iostate __b) {return __a;}
_Ios_Iostate operator~(_Ios_Iostate &__a) {return __a;}
_Ios_Iostate &operator|=(_Ios_Iostate &__a, _Ios_Iostate __b) {return __a;}
_Ios_Iostate &operator&=(_Ios_Iostate &__a, _Ios_Iostate __b) {return __a;}
_Ios_Iostate &operator^=(_Ios_Iostate &__a, _Ios_Iostate __b) {return __a;}
enum class io_errc;
inline error_code make_error_code(io_errc __e) noexcept {return error_code();}
inline error_condition make_error_condition_wrap_class_string;
static luaL_Reg swig_ClientProfile_methods;
static luaL_Reg swig_ClientProfile_meta;
static swig_lua_attribute swig_ClientProfile_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_ClientProfile_Sf_SwigStatic_constants;
static luaL_Reg swig_ClientProfile_Sf_SwigStatic_methods;
static swig_lua_class swig_ClientProfile_Sf_SwigStatic_classes;
static int swig_ClientProfile_Sf_SwigStatic;
static swig_lua_class swig_ClientProfile_bases;
static const char *swig_ClientProfile_base_names;
static swig_lua_class _wrap_class_ClientProfile;
static int _proxy__wrap_new_Connection0;
static swig_lua_attribute swig_Connection_attributes;
static luaL_Reg swig_Connection_methods;
static luaL_Reg swig_Connection_meta;
static swig_lua_attribute swig_Connection_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_Connection_Sf_SwigStatic_constants;
static luaL_Reg swig_Connection_Sf_SwigStatic_methods;
static swig_lua_class swig_Connection_Sf_SwigStatic_classes;
static int swig_Connection_Sf_SwigStatic;
static swig_lua_class swig_Connection_bases;
static const char swig_Connection_base_names = 0;
static swig_lua_class _wrap_class_Connection;
static int _proxy__wrap_new_ConnectionPool0;
static swig_lua_attribute swig_ConnectionPool_attributes;
static luaL_Reg swig_ConnectionPool_methods;
static luaL_Reg swig_ConnectionPool_meta;
static swig_lua_attribute swig_ConnectionPool_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_ConnectionPool_Sf_SwigStatic_constants;
static luaL_Reg swig_ConnectionPool_Sf_SwigStatic_methods;
static swig_lua_class swig_ConnectionPool_Sf_SwigStatic_classes;
static int swig_ConnectionPool_Sf_SwigStatic;
static swig_lua_class *swig_ConnectionPool_bases ;
static const char *swig_ConnectionPool_base_names ;
static swig_lua_class _wrap_class_ConnectionPool;
static int _proxy__wrap_new_Client0;
static swig_lua_attribute swig_Client_attributes;
static luaL_Reg swig_Client_methods;
static luaL_Reg swig_Client_meta;
static swig_lua_attribute swig_Client_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_Client_Sf_SwigStatic_constants;
static luaL_Reg swig_Client_Sf_SwigStatic_methods;
static swig_lua_class swig_Client_Sf_SwigStatic_classes;
static int swig_Client_Sf_SwigStatic;
static swig_lua_class *swig_Client_bases;
static const char *swig_Client_base_names;
static swig_lua_class _wrap_class_Client;
static int _proxy__wrap_new_PreludeLog0;
static swig_lua_attribute swig_PreludeLog_attributes;
static luaL_Reg swig_PreludeLog_methods;
static luaL_Reg swig_PreludeLog_meta;
static swig_lua_attribute swig_PreludeLog_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_PreludeLog_Sf_SwigStatic_constants;
static luaL_Reg swig_PreludeLog_Sf_SwigStatic_methods;
static swig_lua_class swig_PreludeLog_Sf_SwigStatic_classes;
static int swig_PreludeLog_Sf_SwigStatic;
static swig_lua_class swig_PreludeLog_bases;
static const char *swig_PreludeLog_base_names;
static swig_lua_class _wrap_class_PreludeLog;
static int _proxy__wrap_new_PreludeError0;
static swig_lua_attribute swig_PreludeError_attributes;
static luaL_Reg swig_PreludeError_methods;
static luaL_Reg swig_PreludeError_meta;
static swig_lua_attribute swig_PreludeError_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_PreludeError_Sf_SwigStatic_constants;
static luaL_Reg swig_PreludeError_Sf_SwigStatic_methods;
static swig_lua_class swig_PreludeError_Sf_SwigStatic_classes;
static int swig_PreludeError_Sf_SwigStatic;
static swig_lua_class swig_PreludeError_bases;
static const char *swig_PreludeError_base_names;
static swig_lua_class _wrap_class_PreludeError;
static int _proxy__wrap_new_ClientEasy0;
static swig_lua_attribute swig_ClientEasy_attributes;
static luaL_Reg swig_ClientEasy_methods;
static luaL_Reg swig_ClientEasy_meta;
static swig_lua_attribute swig_ClientEasy_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_ClientEasy_Sf_SwigStatic_constants;
static luaL_Reg swig_ClientEasy_Sf_SwigStatic_methods;
static swig_lua_class swig_ClientEasy_Sf_SwigStatic_classes;
static int swig_ClientEasy_Sf_SwigStatic;
static swig_lua_class *swig_ClientEasy_bases;
static const char *swig_ClientEasy_base_names;
static swig_lua_class _wrap_class_ClientEasy;
static int _proxy__wrap_new_IDMEFCriterion0;
static swig_lua_attribute swig_IDMEFCriterion_attributes;
static luaL_Reg swig_IDMEFCriterion_methods;
static luaL_Reg swig_IDMEFCriterion_meta;
static swig_lua_attribute swig_IDMEFCriterion_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEFCriterion_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEFCriterion_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEFCriterion_Sf_SwigStatic_classes;
static int swig_IDMEFCriterion_Sf_SwigStatic;
static swig_lua_class swig_IDMEFCriterion_bases;
static const char *swig_IDMEFCriterion_base_names;
static swig_lua_class _wrap_class_IDMEFCriterion;
static int _proxy__wrap_new_IDMEFCriteria0;
static swig_lua_attribute swig_IDMEFCriteria_attributes;
static luaL_Reg swig_IDMEFCriteria_methods;
static luaL_Reg swig_IDMEFCriteria_meta;
static swig_lua_attribute swig_IDMEFCriteria_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEFCriteria_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEFCriteria_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEFCriteria_Sf_SwigStatic_classes;
static int swig_IDMEFCriteria_Sf_SwigStatic;
static swig_lua_class swig_IDMEFCriteria_bases;
static const char *swig_IDMEFCriteria_base_names;
static swig_lua_class _wrap_class_IDMEFCriteria;
static int _proxy__wrap_new_IDMEFValue0;
static swig_lua_attribute swig_IDMEFValue_attributes;
static luaL_Reg swig_IDMEFValue_methods;
static luaL_Reg swig_IDMEFValue_meta;
static swig_lua_attribute swig_IDMEFValue_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEFValue_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEFValue_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEFValue_Sf_SwigStatic_classes;
static int swig_IDMEFValue_Sf_SwigStatic;
static swig_lua_class swig_IDMEFValue_bases;
static const char *swig_IDMEFValue_base_names;
static swig_lua_class _wrap_class_IDMEFValue;
static int _proxy__wrap_new_IDMEFPath0;
static swig_lua_attribute swig_IDMEFPath_attributes;
static luaL_Reg swig_IDMEFPath_methods;
static luaL_Reg swig_IDMEFPath_meta;
static swig_lua_attribute swig_IDMEFPath_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEFPath_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEFPath_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEFPath_Sf_SwigStatic_classes;
static int swig_IDMEFPath_Sf_SwigStatic;
static swig_lua_class swig_IDMEFPath_bases;
static const char *swig_IDMEFPath_base_names;
static swig_lua_class _wrap_class_IDMEFPath;
static int _proxy__wrap_new_IDMEFTime0;
static swig_lua_attribute swig_IDMEFTime_attributes;
static luaL_Reg swig_IDMEFTime_methods;
static luaL_Reg swig_IDMEFTime_meta;
static swig_lua_attribute swig_IDMEFTime_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEFTime_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEFTime_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEFTime_Sf_SwigStatic_classes;
static int swig_IDMEFTime_Sf_SwigStatic;
static swig_lua_class swig_IDMEFTime_bases;
static const char *swig_IDMEFTime_base_names;
static swig_lua_class _wrap_class_IDMEFTime;
static int _proxy__wrap_new_IDMEFClass0;
static swig_lua_attribute swig_IDMEFClass_attributes;
static luaL_Reg swig_IDMEFClass_methods;
static luaL_Reg swig_IDMEFClass_meta;
static swig_lua_attribute swig_IDMEFClass_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEFClass_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEFClass_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEFClass_Sf_SwigStatic_classes;
static int swig_IDMEFClass_Sf_SwigStatic;
static swig_lua_class swig_IDMEFClass_bases;
static const char *swig_IDMEFClass_base_names;
static swig_lua_class _wrap_class_IDMEFClass;
static int _proxy__wrap_new_IDMEF0;
static swig_lua_attribute swig_IDMEF_attributes;
static luaL_Reg swig_IDMEF_methods;
static luaL_Reg swig_IDMEF_meta;
static swig_lua_attribute swig_IDMEF_Sf_SwigStatic_attributes;
static swig_lua_const_info swig_IDMEF_Sf_SwigStatic_constants;
static luaL_Reg swig_IDMEF_Sf_SwigStatic_methods;
static swig_lua_class swig_IDMEF_Sf_SwigStatic_classes;
static int swig_IDMEF_Sf_SwigStatic;
static swig_lua_class swig_IDMEF_bases;
static const char *swig_IDMEF_base_names;
static swig_lua_class _wrap_class_IDMEF;
static swig_lua_attribute swig_SwigModule_attributes;
static swig_lua_const_info swig_SwigModule_constants;
static luaL_Reg swig_SwigModule_methods;
static swig_lua_class *swig_SwigModule_classes;
static int swig_SwigModule_namespaces;
static int swig_SwigModule;
}
static void *_p_Prelude__ClientTo_p_Prelude__ClientProfile0;
|