author | Tom Henderson <tomh@tomh.org> |
Mon, 15 Sep 2014 20:51:08 -0700 | |
changeset 10956 | fa4be182ef17 |
parent 10795 | 29506f2221e2 |
child 10990 | 414d94e669c5 |
permissions | -rw-r--r-- |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1 |
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
4 |
import pybindgen.settings |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
5 |
import warnings |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
6 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
7 |
class ErrorHandler(pybindgen.settings.ErrorHandler): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
8 |
def handle_error(self, wrapper, exception, traceback_): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
9 |
warnings.warn("exception %r in wrapper %s" % (exception, wrapper)) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
10 |
return True |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
11 |
pybindgen.settings.error_handler = ErrorHandler() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
12 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
13 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
14 |
import sys |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
15 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
16 |
def module_init(): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
17 |
root_module = Module('ns.stats', cpp_namespace='::ns3') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
18 |
return root_module |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
19 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
20 |
def register_types(module): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
21 |
root_module = module.get_root() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
22 |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
23 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
24 |
module.add_class('AttributeConstructionList', import_from_module='ns.core') |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
25 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
26 |
module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
27 |
## callback.h (module 'core'): ns3::CallbackBase [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
28 |
module.add_class('CallbackBase', import_from_module='ns.core') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
29 |
## data-output-interface.h (module 'stats'): ns3::DataOutputCallback [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
30 |
module.add_class('DataOutputCallback', allow_subclassing=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
31 |
## event-id.h (module 'core'): ns3::EventId [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
32 |
module.add_class('EventId', import_from_module='ns.core') |
10123 | 33 |
## file-helper.h (module 'stats'): ns3::FileHelper [class] |
34 |
module.add_class('FileHelper') |
|
9901 | 35 |
## gnuplot.h (module 'stats'): ns3::Gnuplot [class] |
36 |
module.add_class('Gnuplot') |
|
37 |
## gnuplot.h (module 'stats'): ns3::GnuplotCollection [class] |
|
38 |
module.add_class('GnuplotCollection') |
|
39 |
## gnuplot.h (module 'stats'): ns3::GnuplotDataset [class] |
|
40 |
module.add_class('GnuplotDataset') |
|
10123 | 41 |
## gnuplot-helper.h (module 'stats'): ns3::GnuplotHelper [class] |
42 |
module.add_class('GnuplotHelper') |
|
43 |
## hash.h (module 'core'): ns3::Hasher [class] |
|
44 |
module.add_class('Hasher', import_from_module='ns.core') |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
45 |
## object-base.h (module 'core'): ns3::ObjectBase [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
46 |
module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
47 |
## object.h (module 'core'): ns3::ObjectDeleter [struct] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
48 |
module.add_class('ObjectDeleter', import_from_module='ns.core') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
49 |
## object-factory.h (module 'core'): ns3::ObjectFactory [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
50 |
module.add_class('ObjectFactory', import_from_module='ns.core') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
51 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
52 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
53 |
## simulator.h (module 'core'): ns3::Simulator [class] |
7375
5ccbfab63589
Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7090
diff
changeset
|
54 |
module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core') |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
55 |
## data-calculator.h (module 'stats'): ns3::StatisticalSummary [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
56 |
module.add_class('StatisticalSummary', allow_subclassing=True) |
10795 | 57 |
## nstime.h (module 'core'): ns3::TimeWithUnit [class] |
58 |
module.add_class('TimeWithUnit', import_from_module='ns.core') |
|
10123 | 59 |
## traced-value.h (module 'core'): ns3::TracedValue<bool> [class] |
60 |
module.add_class('TracedValue', import_from_module='ns.core', template_parameters=['bool']) |
|
61 |
## traced-value.h (module 'core'): ns3::TracedValue<double> [class] |
|
62 |
module.add_class('TracedValue', import_from_module='ns.core', template_parameters=['double']) |
|
63 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned char> [class] |
|
64 |
module.add_class('TracedValue', import_from_module='ns.core', template_parameters=['unsigned char']) |
|
65 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned int> [class] |
|
66 |
module.add_class('TracedValue', import_from_module='ns.core', template_parameters=['unsigned int']) |
|
67 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned short> [class] |
|
68 |
module.add_class('TracedValue', import_from_module='ns.core', template_parameters=['unsigned short']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
69 |
## type-id.h (module 'core'): ns3::TypeId [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
70 |
module.add_class('TypeId', import_from_module='ns.core') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
71 |
## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
72 |
module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core') |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
73 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
74 |
module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
75 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
76 |
module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
77 |
## empty.h (module 'core'): ns3::empty [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
78 |
module.add_class('empty', import_from_module='ns.core') |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
79 |
## int64x64-double.h (module 'core'): ns3::int64x64_t [class] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
80 |
module.add_class('int64x64_t', import_from_module='ns.core') |
10628
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
81 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::impl_type [enumeration] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
82 |
module.add_enum('impl_type', ['int128_impl', 'cairo_impl', 'ld_impl'], outer_class=root_module['ns3::int64x64_t'], import_from_module='ns.core') |
9901 | 83 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dDataset [class] |
84 |
module.add_class('Gnuplot2dDataset', parent=root_module['ns3::GnuplotDataset']) |
|
85 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dDataset::Style [enumeration] |
|
86 |
module.add_enum('Style', ['LINES', 'POINTS', 'LINES_POINTS', 'DOTS', 'IMPULSES', 'STEPS', 'FSTEPS', 'HISTEPS'], outer_class=root_module['ns3::Gnuplot2dDataset']) |
|
87 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dDataset::ErrorBars [enumeration] |
|
88 |
module.add_enum('ErrorBars', ['NONE', 'X', 'Y', 'XY'], outer_class=root_module['ns3::Gnuplot2dDataset']) |
|
89 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dFunction [class] |
|
90 |
module.add_class('Gnuplot2dFunction', parent=root_module['ns3::GnuplotDataset']) |
|
91 |
## gnuplot.h (module 'stats'): ns3::Gnuplot3dDataset [class] |
|
92 |
module.add_class('Gnuplot3dDataset', parent=root_module['ns3::GnuplotDataset']) |
|
93 |
## gnuplot.h (module 'stats'): ns3::Gnuplot3dFunction [class] |
|
94 |
module.add_class('Gnuplot3dFunction', parent=root_module['ns3::GnuplotDataset']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
95 |
## object.h (module 'core'): ns3::Object [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
96 |
module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
97 |
## object.h (module 'core'): ns3::Object::AggregateIterator [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
98 |
module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
99 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
100 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
101 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
102 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
103 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
104 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
105 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
106 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
107 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
108 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::EventImpl', 'ns3::empty', 'ns3::DefaultDeleter<ns3::EventImpl>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
10123 | 109 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> > [class] |
110 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Hash::Implementation', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Hash::Implementation>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
111 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
112 |
module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount')) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
113 |
## nstime.h (module 'core'): ns3::Time [class] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
114 |
module.add_class('Time', import_from_module='ns.core') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
115 |
## nstime.h (module 'core'): ns3::Time::Unit [enumeration] |
10534 | 116 |
module.add_enum('Unit', ['Y', 'D', 'H', 'MIN', 'S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core') |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
117 |
## nstime.h (module 'core'): ns3::Time [class] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
118 |
root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t']) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
119 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
120 |
module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
121 |
## attribute.h (module 'core'): ns3::AttributeAccessor [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
122 |
module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
123 |
## attribute.h (module 'core'): ns3::AttributeChecker [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
124 |
module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
125 |
## attribute.h (module 'core'): ns3::AttributeValue [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
126 |
module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
10123 | 127 |
## boolean.h (module 'core'): ns3::BooleanChecker [class] |
128 |
module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
129 |
## boolean.h (module 'core'): ns3::BooleanValue [class] |
|
130 |
module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
131 |
## callback.h (module 'core'): ns3::CallbackChecker [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
132 |
module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
133 |
## callback.h (module 'core'): ns3::CallbackImplBase [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
134 |
module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
135 |
## callback.h (module 'core'): ns3::CallbackValue [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
136 |
module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
137 |
## data-calculator.h (module 'stats'): ns3::DataCalculator [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
138 |
module.add_class('DataCalculator', parent=root_module['ns3::Object']) |
10123 | 139 |
## data-collection-object.h (module 'stats'): ns3::DataCollectionObject [class] |
140 |
module.add_class('DataCollectionObject', parent=root_module['ns3::Object']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
141 |
## data-collector.h (module 'stats'): ns3::DataCollector [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
142 |
module.add_class('DataCollector', parent=root_module['ns3::Object']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
143 |
## data-output-interface.h (module 'stats'): ns3::DataOutputInterface [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
144 |
module.add_class('DataOutputInterface', parent=root_module['ns3::Object']) |
10123 | 145 |
## double.h (module 'core'): ns3::DoubleValue [class] |
146 |
module.add_class('DoubleValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
147 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
148 |
module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
10123 | 149 |
## enum.h (module 'core'): ns3::EnumChecker [class] |
150 |
module.add_class('EnumChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
|
151 |
## enum.h (module 'core'): ns3::EnumValue [class] |
|
152 |
module.add_class('EnumValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
153 |
## event-impl.h (module 'core'): ns3::EventImpl [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
154 |
module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >']) |
10123 | 155 |
## file-aggregator.h (module 'stats'): ns3::FileAggregator [class] |
156 |
module.add_class('FileAggregator', parent=root_module['ns3::DataCollectionObject']) |
|
157 |
## file-aggregator.h (module 'stats'): ns3::FileAggregator::FileType [enumeration] |
|
158 |
module.add_enum('FileType', ['FORMATTED', 'SPACE_SEPARATED', 'COMMA_SEPARATED', 'TAB_SEPARATED'], outer_class=root_module['ns3::FileAggregator']) |
|
159 |
## gnuplot-aggregator.h (module 'stats'): ns3::GnuplotAggregator [class] |
|
160 |
module.add_class('GnuplotAggregator', parent=root_module['ns3::DataCollectionObject']) |
|
161 |
## gnuplot-aggregator.h (module 'stats'): ns3::GnuplotAggregator::KeyLocation [enumeration] |
|
162 |
module.add_enum('KeyLocation', ['NO_KEY', 'KEY_INSIDE', 'KEY_ABOVE', 'KEY_BELOW'], outer_class=root_module['ns3::GnuplotAggregator']) |
|
163 |
## integer.h (module 'core'): ns3::IntegerValue [class] |
|
164 |
module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
9901 | 165 |
## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double> [class] |
166 |
module.add_class('MinMaxAvgTotalCalculator', template_parameters=['double'], parent=[root_module['ns3::DataCalculator'], root_module['ns3::StatisticalSummary']]) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
167 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
168 |
module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
169 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
170 |
module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
171 |
## omnet-data-output.h (module 'stats'): ns3::OmnetDataOutput [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
172 |
module.add_class('OmnetDataOutput', parent=root_module['ns3::DataOutputInterface']) |
10123 | 173 |
## probe.h (module 'stats'): ns3::Probe [class] |
174 |
module.add_class('Probe', parent=root_module['ns3::DataCollectionObject']) |
|
10628
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
175 |
## sqlite-data-output.h (module 'stats'): ns3::SqliteDataOutput [class] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
176 |
module.add_class('SqliteDataOutput', parent=root_module['ns3::DataOutputInterface']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
177 |
## time-data-calculators.h (module 'stats'): ns3::TimeMinMaxAvgTotalCalculator [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
178 |
module.add_class('TimeMinMaxAvgTotalCalculator', parent=root_module['ns3::DataCalculator']) |
10123 | 179 |
## time-series-adaptor.h (module 'stats'): ns3::TimeSeriesAdaptor [class] |
180 |
module.add_class('TimeSeriesAdaptor', parent=root_module['ns3::DataCollectionObject']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
181 |
## nstime.h (module 'core'): ns3::TimeValue [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
182 |
module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
183 |
## type-id.h (module 'core'): ns3::TypeIdChecker [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
184 |
module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
185 |
## type-id.h (module 'core'): ns3::TypeIdValue [class] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
186 |
module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
10123 | 187 |
## uinteger-16-probe.h (module 'stats'): ns3::Uinteger16Probe [class] |
188 |
module.add_class('Uinteger16Probe', parent=root_module['ns3::Probe']) |
|
189 |
## uinteger-32-probe.h (module 'stats'): ns3::Uinteger32Probe [class] |
|
190 |
module.add_class('Uinteger32Probe', parent=root_module['ns3::Probe']) |
|
191 |
## uinteger-8-probe.h (module 'stats'): ns3::Uinteger8Probe [class] |
|
192 |
module.add_class('Uinteger8Probe', parent=root_module['ns3::Probe']) |
|
193 |
## uinteger.h (module 'core'): ns3::UintegerValue [class] |
|
194 |
module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue']) |
|
195 |
## boolean-probe.h (module 'stats'): ns3::BooleanProbe [class] |
|
196 |
module.add_class('BooleanProbe', parent=root_module['ns3::Probe']) |
|
197 |
## double-probe.h (module 'stats'): ns3::DoubleProbe [class] |
|
198 |
module.add_class('DoubleProbe', parent=root_module['ns3::Probe']) |
|
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
199 |
typehandlers.add_type_alias(u'std::list< ns3::Ptr< ns3::DataCalculator >, std::allocator< ns3::Ptr< ns3::DataCalculator > > >', u'ns3::DataCalculatorList') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
200 |
typehandlers.add_type_alias(u'std::list< ns3::Ptr< ns3::DataCalculator >, std::allocator< ns3::Ptr< ns3::DataCalculator > > >*', u'ns3::DataCalculatorList*') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
201 |
typehandlers.add_type_alias(u'std::list< ns3::Ptr< ns3::DataCalculator >, std::allocator< ns3::Ptr< ns3::DataCalculator > > >&', u'ns3::DataCalculatorList&') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
202 |
typehandlers.add_type_alias(u'std::list< std::pair< std::string, std::string >, std::allocator< std::pair< std::string, std::string > > >', u'ns3::MetadataList') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
203 |
typehandlers.add_type_alias(u'std::list< std::pair< std::string, std::string >, std::allocator< std::pair< std::string, std::string > > >*', u'ns3::MetadataList*') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
204 |
typehandlers.add_type_alias(u'std::list< std::pair< std::string, std::string >, std::allocator< std::pair< std::string, std::string > > >&', u'ns3::MetadataList&') |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
205 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
206 |
## Register a nested module for the namespace FatalImpl |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
207 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
208 |
nested_module = module.add_cpp_namespace('FatalImpl') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
209 |
register_types_ns3_FatalImpl(nested_module) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
210 |
|
10123 | 211 |
|
212 |
## Register a nested module for the namespace Hash |
|
213 |
||
214 |
nested_module = module.add_cpp_namespace('Hash') |
|
215 |
register_types_ns3_Hash(nested_module) |
|
216 |
||
217 |
||
218 |
## Register a nested module for the namespace internal |
|
219 |
||
220 |
nested_module = module.add_cpp_namespace('internal') |
|
221 |
register_types_ns3_internal(nested_module) |
|
222 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
223 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
224 |
def register_types_ns3_FatalImpl(module): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
225 |
root_module = module.get_root() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
226 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
227 |
|
10123 | 228 |
def register_types_ns3_Hash(module): |
229 |
root_module = module.get_root() |
|
230 |
||
231 |
## hash-function.h (module 'core'): ns3::Hash::Implementation [class] |
|
232 |
module.add_class('Implementation', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >']) |
|
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
233 |
typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) *', u'ns3::Hash::Hash32Function_ptr') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
234 |
typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) **', u'ns3::Hash::Hash32Function_ptr*') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
235 |
typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) *&', u'ns3::Hash::Hash32Function_ptr&') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
236 |
typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) *', u'ns3::Hash::Hash64Function_ptr') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
237 |
typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) **', u'ns3::Hash::Hash64Function_ptr*') |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
238 |
typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) *&', u'ns3::Hash::Hash64Function_ptr&') |
10123 | 239 |
|
240 |
## Register a nested module for the namespace Function |
|
241 |
||
242 |
nested_module = module.add_cpp_namespace('Function') |
|
243 |
register_types_ns3_Hash_Function(nested_module) |
|
244 |
||
245 |
||
246 |
def register_types_ns3_Hash_Function(module): |
|
247 |
root_module = module.get_root() |
|
248 |
||
249 |
## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a [class] |
|
250 |
module.add_class('Fnv1a', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation']) |
|
251 |
## hash-function.h (module 'core'): ns3::Hash::Function::Hash32 [class] |
|
252 |
module.add_class('Hash32', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation']) |
|
253 |
## hash-function.h (module 'core'): ns3::Hash::Function::Hash64 [class] |
|
254 |
module.add_class('Hash64', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation']) |
|
255 |
## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3 [class] |
|
256 |
module.add_class('Murmur3', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation']) |
|
257 |
||
258 |
def register_types_ns3_internal(module): |
|
259 |
root_module = module.get_root() |
|
260 |
||
261 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
262 |
def register_methods(root_module): |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
263 |
register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList']) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
264 |
register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
265 |
register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
266 |
register_Ns3DataOutputCallback_methods(root_module, root_module['ns3::DataOutputCallback']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
267 |
register_Ns3EventId_methods(root_module, root_module['ns3::EventId']) |
10123 | 268 |
register_Ns3FileHelper_methods(root_module, root_module['ns3::FileHelper']) |
9901 | 269 |
register_Ns3Gnuplot_methods(root_module, root_module['ns3::Gnuplot']) |
270 |
register_Ns3GnuplotCollection_methods(root_module, root_module['ns3::GnuplotCollection']) |
|
271 |
register_Ns3GnuplotDataset_methods(root_module, root_module['ns3::GnuplotDataset']) |
|
10123 | 272 |
register_Ns3GnuplotHelper_methods(root_module, root_module['ns3::GnuplotHelper']) |
273 |
register_Ns3Hasher_methods(root_module, root_module['ns3::Hasher']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
274 |
register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
275 |
register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
276 |
register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
277 |
register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
278 |
register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
279 |
register_Ns3StatisticalSummary_methods(root_module, root_module['ns3::StatisticalSummary']) |
10795 | 280 |
register_Ns3TimeWithUnit_methods(root_module, root_module['ns3::TimeWithUnit']) |
10123 | 281 |
register_Ns3TracedValue__Bool_methods(root_module, root_module['ns3::TracedValue< bool >']) |
282 |
register_Ns3TracedValue__Double_methods(root_module, root_module['ns3::TracedValue< double >']) |
|
283 |
register_Ns3TracedValue__Unsigned_char_methods(root_module, root_module['ns3::TracedValue< unsigned char >']) |
|
284 |
register_Ns3TracedValue__Unsigned_int_methods(root_module, root_module['ns3::TracedValue< unsigned int >']) |
|
285 |
register_Ns3TracedValue__Unsigned_short_methods(root_module, root_module['ns3::TracedValue< unsigned short >']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
286 |
register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId']) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
287 |
register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation']) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
288 |
register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
289 |
register_Ns3Empty_methods(root_module, root_module['ns3::empty']) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
290 |
register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t']) |
9901 | 291 |
register_Ns3Gnuplot2dDataset_methods(root_module, root_module['ns3::Gnuplot2dDataset']) |
292 |
register_Ns3Gnuplot2dFunction_methods(root_module, root_module['ns3::Gnuplot2dFunction']) |
|
293 |
register_Ns3Gnuplot3dDataset_methods(root_module, root_module['ns3::Gnuplot3dDataset']) |
|
294 |
register_Ns3Gnuplot3dFunction_methods(root_module, root_module['ns3::Gnuplot3dFunction']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
295 |
register_Ns3Object_methods(root_module, root_module['ns3::Object']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
296 |
register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
297 |
register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
298 |
register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
299 |
register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
300 |
register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
301 |
register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >']) |
10123 | 302 |
register_Ns3SimpleRefCount__Ns3HashImplementation_Ns3Empty_Ns3DefaultDeleter__lt__ns3HashImplementation__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >']) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
303 |
register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >']) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
304 |
register_Ns3Time_methods(root_module, root_module['ns3::Time']) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
305 |
register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
306 |
register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
307 |
register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
308 |
register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue']) |
10123 | 309 |
register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker']) |
310 |
register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
311 |
register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
312 |
register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
313 |
register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
314 |
register_Ns3DataCalculator_methods(root_module, root_module['ns3::DataCalculator']) |
10123 | 315 |
register_Ns3DataCollectionObject_methods(root_module, root_module['ns3::DataCollectionObject']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
316 |
register_Ns3DataCollector_methods(root_module, root_module['ns3::DataCollector']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
317 |
register_Ns3DataOutputInterface_methods(root_module, root_module['ns3::DataOutputInterface']) |
10123 | 318 |
register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
319 |
register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue']) |
10123 | 320 |
register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker']) |
321 |
register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
322 |
register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl']) |
10123 | 323 |
register_Ns3FileAggregator_methods(root_module, root_module['ns3::FileAggregator']) |
324 |
register_Ns3GnuplotAggregator_methods(root_module, root_module['ns3::GnuplotAggregator']) |
|
325 |
register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue']) |
|
9901 | 326 |
register_Ns3MinMaxAvgTotalCalculator__Double_methods(root_module, root_module['ns3::MinMaxAvgTotalCalculator< double >']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
327 |
register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
328 |
register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
329 |
register_Ns3OmnetDataOutput_methods(root_module, root_module['ns3::OmnetDataOutput']) |
10123 | 330 |
register_Ns3Probe_methods(root_module, root_module['ns3::Probe']) |
10628
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
331 |
register_Ns3SqliteDataOutput_methods(root_module, root_module['ns3::SqliteDataOutput']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
332 |
register_Ns3TimeMinMaxAvgTotalCalculator_methods(root_module, root_module['ns3::TimeMinMaxAvgTotalCalculator']) |
10123 | 333 |
register_Ns3TimeSeriesAdaptor_methods(root_module, root_module['ns3::TimeSeriesAdaptor']) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
334 |
register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
335 |
register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker']) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
336 |
register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue']) |
10123 | 337 |
register_Ns3Uinteger16Probe_methods(root_module, root_module['ns3::Uinteger16Probe']) |
338 |
register_Ns3Uinteger32Probe_methods(root_module, root_module['ns3::Uinteger32Probe']) |
|
339 |
register_Ns3Uinteger8Probe_methods(root_module, root_module['ns3::Uinteger8Probe']) |
|
340 |
register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue']) |
|
341 |
register_Ns3BooleanProbe_methods(root_module, root_module['ns3::BooleanProbe']) |
|
342 |
register_Ns3DoubleProbe_methods(root_module, root_module['ns3::DoubleProbe']) |
|
343 |
register_Ns3HashImplementation_methods(root_module, root_module['ns3::Hash::Implementation']) |
|
344 |
register_Ns3HashFunctionFnv1a_methods(root_module, root_module['ns3::Hash::Function::Fnv1a']) |
|
345 |
register_Ns3HashFunctionHash32_methods(root_module, root_module['ns3::Hash::Function::Hash32']) |
|
346 |
register_Ns3HashFunctionHash64_methods(root_module, root_module['ns3::Hash::Function::Hash64']) |
|
347 |
register_Ns3HashFunctionMurmur3_methods(root_module, root_module['ns3::Hash::Function::Murmur3']) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
348 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
349 |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
350 |
def register_Ns3AttributeConstructionList_methods(root_module, cls): |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
351 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
352 |
cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
353 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
354 |
cls.add_constructor([]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
355 |
## attribute-construction-list.h (module 'core'): void ns3::AttributeConstructionList::Add(std::string name, ns3::Ptr<ns3::AttributeChecker const> checker, ns3::Ptr<ns3::AttributeValue> value) [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
356 |
cls.add_method('Add', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
357 |
'void', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
358 |
[param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
359 |
## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
360 |
cls.add_method('Begin', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
361 |
'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
362 |
[], |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
363 |
is_const=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
364 |
## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
365 |
cls.add_method('End', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
366 |
'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
367 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
368 |
is_const=True) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
369 |
## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
370 |
cls.add_method('Find', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
371 |
'ns3::Ptr< ns3::AttributeValue >', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
372 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
373 |
is_const=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
374 |
return |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
375 |
|
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
376 |
def register_Ns3AttributeConstructionListItem_methods(root_module, cls): |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
377 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
378 |
cls.add_constructor([]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
379 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
380 |
cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
381 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
382 |
cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
383 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
384 |
cls.add_instance_attribute('name', 'std::string', is_const=False) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
385 |
## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
386 |
cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
387 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
388 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
389 |
def register_Ns3CallbackBase_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
390 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
391 |
cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
392 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
393 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
394 |
## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
395 |
cls.add_method('GetImpl', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
396 |
'ns3::Ptr< ns3::CallbackImplBase >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
397 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
398 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
399 |
## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
400 |
cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
401 |
visibility='protected') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
402 |
## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
403 |
cls.add_method('Demangle', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
404 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
405 |
[param('std::string const &', 'mangled')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
406 |
is_static=True, visibility='protected') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
407 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
408 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
409 |
def register_Ns3DataOutputCallback_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
410 |
## data-output-interface.h (module 'stats'): ns3::DataOutputCallback::DataOutputCallback() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
411 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
412 |
## data-output-interface.h (module 'stats'): ns3::DataOutputCallback::DataOutputCallback(ns3::DataOutputCallback const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
413 |
cls.add_constructor([param('ns3::DataOutputCallback const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
414 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, int val) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
415 |
cls.add_method('OutputSingleton', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
416 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
417 |
[param('std::string', 'key'), param('std::string', 'variable'), param('int', 'val')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
418 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
419 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, uint32_t val) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
420 |
cls.add_method('OutputSingleton', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
421 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
422 |
[param('std::string', 'key'), param('std::string', 'variable'), param('uint32_t', 'val')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
423 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
424 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, double val) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
425 |
cls.add_method('OutputSingleton', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
426 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
427 |
[param('std::string', 'key'), param('std::string', 'variable'), param('double', 'val')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
428 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
429 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, std::string val) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
430 |
cls.add_method('OutputSingleton', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
431 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
432 |
[param('std::string', 'key'), param('std::string', 'variable'), param('std::string', 'val')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
433 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
434 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, ns3::Time val) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
435 |
cls.add_method('OutputSingleton', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
436 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
437 |
[param('std::string', 'key'), param('std::string', 'variable'), param('ns3::Time', 'val')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
438 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
439 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputStatistic(std::string key, std::string variable, ns3::StatisticalSummary const * statSum) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
440 |
cls.add_method('OutputStatistic', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
441 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
442 |
[param('std::string', 'key'), param('std::string', 'variable'), param('ns3::StatisticalSummary const *', 'statSum')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
443 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
444 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
445 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
446 |
def register_Ns3EventId_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
447 |
cls.add_binary_comparison_operator('!=') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
448 |
cls.add_binary_comparison_operator('==') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
449 |
## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
450 |
cls.add_constructor([param('ns3::EventId const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
451 |
## event-id.h (module 'core'): ns3::EventId::EventId() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
452 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
453 |
## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
454 |
cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
455 |
## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
456 |
cls.add_method('Cancel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
457 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
458 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
459 |
## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
460 |
cls.add_method('GetContext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
461 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
462 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
463 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
464 |
## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
465 |
cls.add_method('GetTs', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
466 |
'uint64_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
467 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
468 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
469 |
## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
470 |
cls.add_method('GetUid', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
471 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
472 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
473 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
474 |
## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
475 |
cls.add_method('IsExpired', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
476 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
477 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
478 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
479 |
## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
480 |
cls.add_method('IsRunning', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
481 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
482 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
483 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
484 |
## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
485 |
cls.add_method('PeekEventImpl', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
486 |
'ns3::EventImpl *', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
487 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
488 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
489 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
490 |
|
10123 | 491 |
def register_Ns3FileHelper_methods(root_module, cls): |
492 |
## file-helper.h (module 'stats'): ns3::FileHelper::FileHelper(ns3::FileHelper const & arg0) [copy constructor] |
|
493 |
cls.add_constructor([param('ns3::FileHelper const &', 'arg0')]) |
|
494 |
## file-helper.h (module 'stats'): ns3::FileHelper::FileHelper() [constructor] |
|
495 |
cls.add_constructor([]) |
|
496 |
## file-helper.h (module 'stats'): ns3::FileHelper::FileHelper(std::string const & outputFileNameWithoutExtension, ns3::FileAggregator::FileType fileType=::ns3::FileAggregator::SPACE_SEPARATED) [constructor] |
|
497 |
cls.add_constructor([param('std::string const &', 'outputFileNameWithoutExtension'), param('ns3::FileAggregator::FileType', 'fileType', default_value='::ns3::FileAggregator::SPACE_SEPARATED')]) |
|
498 |
## file-helper.h (module 'stats'): void ns3::FileHelper::AddAggregator(std::string const & aggregatorName, std::string const & outputFileName, bool onlyOneAggregator) [member function] |
|
499 |
cls.add_method('AddAggregator', |
|
500 |
'void', |
|
501 |
[param('std::string const &', 'aggregatorName'), param('std::string const &', 'outputFileName'), param('bool', 'onlyOneAggregator')]) |
|
502 |
## file-helper.h (module 'stats'): void ns3::FileHelper::AddProbe(std::string const & typeId, std::string const & probeName, std::string const & path) [member function] |
|
503 |
cls.add_method('AddProbe', |
|
504 |
'void', |
|
505 |
[param('std::string const &', 'typeId'), param('std::string const &', 'probeName'), param('std::string const &', 'path')]) |
|
506 |
## file-helper.h (module 'stats'): void ns3::FileHelper::AddTimeSeriesAdaptor(std::string const & adaptorName) [member function] |
|
507 |
cls.add_method('AddTimeSeriesAdaptor', |
|
508 |
'void', |
|
509 |
[param('std::string const &', 'adaptorName')]) |
|
510 |
## file-helper.h (module 'stats'): void ns3::FileHelper::ConfigureFile(std::string const & outputFileNameWithoutExtension, ns3::FileAggregator::FileType fileType=::ns3::FileAggregator::SPACE_SEPARATED) [member function] |
|
511 |
cls.add_method('ConfigureFile', |
|
512 |
'void', |
|
513 |
[param('std::string const &', 'outputFileNameWithoutExtension'), param('ns3::FileAggregator::FileType', 'fileType', default_value='::ns3::FileAggregator::SPACE_SEPARATED')]) |
|
514 |
## file-helper.h (module 'stats'): ns3::Ptr<ns3::FileAggregator> ns3::FileHelper::GetAggregatorMultiple(std::string const & aggregatorName, std::string const & outputFileName) [member function] |
|
515 |
cls.add_method('GetAggregatorMultiple', |
|
516 |
'ns3::Ptr< ns3::FileAggregator >', |
|
517 |
[param('std::string const &', 'aggregatorName'), param('std::string const &', 'outputFileName')]) |
|
518 |
## file-helper.h (module 'stats'): ns3::Ptr<ns3::FileAggregator> ns3::FileHelper::GetAggregatorSingle() [member function] |
|
519 |
cls.add_method('GetAggregatorSingle', |
|
520 |
'ns3::Ptr< ns3::FileAggregator >', |
|
521 |
[]) |
|
522 |
## file-helper.h (module 'stats'): ns3::Ptr<ns3::Probe> ns3::FileHelper::GetProbe(std::string probeName) const [member function] |
|
523 |
cls.add_method('GetProbe', |
|
524 |
'ns3::Ptr< ns3::Probe >', |
|
525 |
[param('std::string', 'probeName')], |
|
526 |
is_const=True) |
|
527 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set10dFormat(std::string const & format) [member function] |
|
528 |
cls.add_method('Set10dFormat', |
|
529 |
'void', |
|
530 |
[param('std::string const &', 'format')]) |
|
531 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set1dFormat(std::string const & format) [member function] |
|
532 |
cls.add_method('Set1dFormat', |
|
533 |
'void', |
|
534 |
[param('std::string const &', 'format')]) |
|
535 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set2dFormat(std::string const & format) [member function] |
|
536 |
cls.add_method('Set2dFormat', |
|
537 |
'void', |
|
538 |
[param('std::string const &', 'format')]) |
|
539 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set3dFormat(std::string const & format) [member function] |
|
540 |
cls.add_method('Set3dFormat', |
|
541 |
'void', |
|
542 |
[param('std::string const &', 'format')]) |
|
543 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set4dFormat(std::string const & format) [member function] |
|
544 |
cls.add_method('Set4dFormat', |
|
545 |
'void', |
|
546 |
[param('std::string const &', 'format')]) |
|
547 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set5dFormat(std::string const & format) [member function] |
|
548 |
cls.add_method('Set5dFormat', |
|
549 |
'void', |
|
550 |
[param('std::string const &', 'format')]) |
|
551 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set6dFormat(std::string const & format) [member function] |
|
552 |
cls.add_method('Set6dFormat', |
|
553 |
'void', |
|
554 |
[param('std::string const &', 'format')]) |
|
555 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set7dFormat(std::string const & format) [member function] |
|
556 |
cls.add_method('Set7dFormat', |
|
557 |
'void', |
|
558 |
[param('std::string const &', 'format')]) |
|
559 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set8dFormat(std::string const & format) [member function] |
|
560 |
cls.add_method('Set8dFormat', |
|
561 |
'void', |
|
562 |
[param('std::string const &', 'format')]) |
|
563 |
## file-helper.h (module 'stats'): void ns3::FileHelper::Set9dFormat(std::string const & format) [member function] |
|
564 |
cls.add_method('Set9dFormat', |
|
565 |
'void', |
|
566 |
[param('std::string const &', 'format')]) |
|
567 |
## file-helper.h (module 'stats'): void ns3::FileHelper::SetHeading(std::string const & heading) [member function] |
|
568 |
cls.add_method('SetHeading', |
|
569 |
'void', |
|
570 |
[param('std::string const &', 'heading')]) |
|
571 |
## file-helper.h (module 'stats'): void ns3::FileHelper::WriteProbe(std::string const & typeId, std::string const & path, std::string const & probeTraceSource) [member function] |
|
572 |
cls.add_method('WriteProbe', |
|
573 |
'void', |
|
574 |
[param('std::string const &', 'typeId'), param('std::string const &', 'path'), param('std::string const &', 'probeTraceSource')]) |
|
575 |
return |
|
576 |
||
9901 | 577 |
def register_Ns3Gnuplot_methods(root_module, cls): |
578 |
## gnuplot.h (module 'stats'): ns3::Gnuplot::Gnuplot(ns3::Gnuplot const & arg0) [copy constructor] |
|
579 |
cls.add_constructor([param('ns3::Gnuplot const &', 'arg0')]) |
|
580 |
## gnuplot.h (module 'stats'): ns3::Gnuplot::Gnuplot(std::string const & outputFilename="", std::string const & title="") [constructor] |
|
581 |
cls.add_constructor([param('std::string const &', 'outputFilename', default_value='""'), param('std::string const &', 'title', default_value='""')]) |
|
582 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::AddDataset(ns3::GnuplotDataset const & dataset) [member function] |
|
583 |
cls.add_method('AddDataset', |
|
584 |
'void', |
|
585 |
[param('ns3::GnuplotDataset const &', 'dataset')]) |
|
586 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::AppendExtra(std::string const & extra) [member function] |
|
587 |
cls.add_method('AppendExtra', |
|
588 |
'void', |
|
589 |
[param('std::string const &', 'extra')]) |
|
590 |
## gnuplot.h (module 'stats'): static std::string ns3::Gnuplot::DetectTerminal(std::string const & filename) [member function] |
|
591 |
cls.add_method('DetectTerminal', |
|
592 |
'std::string', |
|
593 |
[param('std::string const &', 'filename')], |
|
594 |
is_static=True) |
|
10123 | 595 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::GenerateOutput(std::ostream & os) [member function] |
9901 | 596 |
cls.add_method('GenerateOutput', |
597 |
'void', |
|
10123 | 598 |
[param('std::ostream &', 'os')]) |
599 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::GenerateOutput(std::ostream & osControl, std::ostream & osData, std::string dataFileName) [member function] |
|
600 |
cls.add_method('GenerateOutput', |
|
601 |
'void', |
|
602 |
[param('std::ostream &', 'osControl'), param('std::ostream &', 'osData'), param('std::string', 'dataFileName')]) |
|
603 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::SetDataFileDatasetIndex(unsigned int index) [member function] |
|
604 |
cls.add_method('SetDataFileDatasetIndex', |
|
605 |
'void', |
|
606 |
[param('unsigned int', 'index')]) |
|
9901 | 607 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::SetExtra(std::string const & extra) [member function] |
608 |
cls.add_method('SetExtra', |
|
609 |
'void', |
|
610 |
[param('std::string const &', 'extra')]) |
|
611 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::SetLegend(std::string const & xLegend, std::string const & yLegend) [member function] |
|
612 |
cls.add_method('SetLegend', |
|
613 |
'void', |
|
614 |
[param('std::string const &', 'xLegend'), param('std::string const &', 'yLegend')]) |
|
10123 | 615 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::SetOutputFilename(std::string const & outputFilename) [member function] |
616 |
cls.add_method('SetOutputFilename', |
|
617 |
'void', |
|
618 |
[param('std::string const &', 'outputFilename')]) |
|
9901 | 619 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::SetTerminal(std::string const & terminal) [member function] |
620 |
cls.add_method('SetTerminal', |
|
621 |
'void', |
|
622 |
[param('std::string const &', 'terminal')]) |
|
623 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot::SetTitle(std::string const & title) [member function] |
|
624 |
cls.add_method('SetTitle', |
|
625 |
'void', |
|
626 |
[param('std::string const &', 'title')]) |
|
627 |
return |
|
628 |
||
629 |
def register_Ns3GnuplotCollection_methods(root_module, cls): |
|
630 |
## gnuplot.h (module 'stats'): ns3::GnuplotCollection::GnuplotCollection(ns3::GnuplotCollection const & arg0) [copy constructor] |
|
631 |
cls.add_constructor([param('ns3::GnuplotCollection const &', 'arg0')]) |
|
632 |
## gnuplot.h (module 'stats'): ns3::GnuplotCollection::GnuplotCollection(std::string const & outputFilename) [constructor] |
|
633 |
cls.add_constructor([param('std::string const &', 'outputFilename')]) |
|
634 |
## gnuplot.h (module 'stats'): void ns3::GnuplotCollection::AddPlot(ns3::Gnuplot const & plot) [member function] |
|
635 |
cls.add_method('AddPlot', |
|
636 |
'void', |
|
637 |
[param('ns3::Gnuplot const &', 'plot')]) |
|
10123 | 638 |
## gnuplot.h (module 'stats'): void ns3::GnuplotCollection::GenerateOutput(std::ostream & os) [member function] |
9901 | 639 |
cls.add_method('GenerateOutput', |
640 |
'void', |
|
10123 | 641 |
[param('std::ostream &', 'os')]) |
642 |
## gnuplot.h (module 'stats'): void ns3::GnuplotCollection::GenerateOutput(std::ostream & osControl, std::ostream & osData, std::string dataFileName) [member function] |
|
643 |
cls.add_method('GenerateOutput', |
|
644 |
'void', |
|
645 |
[param('std::ostream &', 'osControl'), param('std::ostream &', 'osData'), param('std::string', 'dataFileName')]) |
|
9901 | 646 |
## gnuplot.h (module 'stats'): ns3::Gnuplot & ns3::GnuplotCollection::GetPlot(unsigned int id) [member function] |
647 |
cls.add_method('GetPlot', |
|
648 |
'ns3::Gnuplot &', |
|
649 |
[param('unsigned int', 'id')]) |
|
650 |
## gnuplot.h (module 'stats'): void ns3::GnuplotCollection::SetTerminal(std::string const & terminal) [member function] |
|
651 |
cls.add_method('SetTerminal', |
|
652 |
'void', |
|
653 |
[param('std::string const &', 'terminal')]) |
|
654 |
return |
|
655 |
||
656 |
def register_Ns3GnuplotDataset_methods(root_module, cls): |
|
657 |
## gnuplot.h (module 'stats'): ns3::GnuplotDataset::GnuplotDataset(ns3::GnuplotDataset const & original) [copy constructor] |
|
658 |
cls.add_constructor([param('ns3::GnuplotDataset const &', 'original')]) |
|
659 |
## gnuplot.h (module 'stats'): static void ns3::GnuplotDataset::SetDefaultExtra(std::string const & extra) [member function] |
|
660 |
cls.add_method('SetDefaultExtra', |
|
661 |
'void', |
|
662 |
[param('std::string const &', 'extra')], |
|
663 |
is_static=True) |
|
664 |
## gnuplot.h (module 'stats'): void ns3::GnuplotDataset::SetExtra(std::string const & extra) [member function] |
|
665 |
cls.add_method('SetExtra', |
|
666 |
'void', |
|
667 |
[param('std::string const &', 'extra')]) |
|
668 |
## gnuplot.h (module 'stats'): void ns3::GnuplotDataset::SetTitle(std::string const & title) [member function] |
|
669 |
cls.add_method('SetTitle', |
|
670 |
'void', |
|
671 |
[param('std::string const &', 'title')]) |
|
672 |
## gnuplot.h (module 'stats'): ns3::GnuplotDataset::GnuplotDataset(ns3::GnuplotDataset::Data * data) [constructor] |
|
673 |
cls.add_constructor([param('ns3::GnuplotDataset::Data *', 'data')], |
|
674 |
visibility='protected') |
|
675 |
return |
|
676 |
||
10123 | 677 |
def register_Ns3GnuplotHelper_methods(root_module, cls): |
678 |
## gnuplot-helper.h (module 'stats'): ns3::GnuplotHelper::GnuplotHelper(ns3::GnuplotHelper const & arg0) [copy constructor] |
|
679 |
cls.add_constructor([param('ns3::GnuplotHelper const &', 'arg0')]) |
|
680 |
## gnuplot-helper.h (module 'stats'): ns3::GnuplotHelper::GnuplotHelper() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
681 |
cls.add_constructor([]) |
10123 | 682 |
## gnuplot-helper.h (module 'stats'): ns3::GnuplotHelper::GnuplotHelper(std::string const & outputFileNameWithoutExtension, std::string const & title, std::string const & xLegend, std::string const & yLegend, std::string const & terminalType="png") [constructor] |
683 |
cls.add_constructor([param('std::string const &', 'outputFileNameWithoutExtension'), param('std::string const &', 'title'), param('std::string const &', 'xLegend'), param('std::string const &', 'yLegend'), param('std::string const &', 'terminalType', default_value='"png"')]) |
|
684 |
## gnuplot-helper.h (module 'stats'): void ns3::GnuplotHelper::AddProbe(std::string const & typeId, std::string const & probeName, std::string const & path) [member function] |
|
685 |
cls.add_method('AddProbe', |
|
686 |
'void', |
|
687 |
[param('std::string const &', 'typeId'), param('std::string const &', 'probeName'), param('std::string const &', 'path')]) |
|
688 |
## gnuplot-helper.h (module 'stats'): void ns3::GnuplotHelper::AddTimeSeriesAdaptor(std::string const & adaptorName) [member function] |
|
689 |
cls.add_method('AddTimeSeriesAdaptor', |
|
690 |
'void', |
|
691 |
[param('std::string const &', 'adaptorName')]) |
|
10183 | 692 |
## gnuplot-helper.h (module 'stats'): void ns3::GnuplotHelper::ConfigurePlot(std::string const & outputFileNameWithoutExtension, std::string const & title, std::string const & xLegend, std::string const & yLegend, std::string const & terminalType="png") [member function] |
10123 | 693 |
cls.add_method('ConfigurePlot', |
694 |
'void', |
|
10183 | 695 |
[param('std::string const &', 'outputFileNameWithoutExtension'), param('std::string const &', 'title'), param('std::string const &', 'xLegend'), param('std::string const &', 'yLegend'), param('std::string const &', 'terminalType', default_value='"png"')]) |
10123 | 696 |
## gnuplot-helper.h (module 'stats'): ns3::Ptr<ns3::GnuplotAggregator> ns3::GnuplotHelper::GetAggregator() [member function] |
697 |
cls.add_method('GetAggregator', |
|
698 |
'ns3::Ptr< ns3::GnuplotAggregator >', |
|
699 |
[]) |
|
700 |
## gnuplot-helper.h (module 'stats'): ns3::Ptr<ns3::Probe> ns3::GnuplotHelper::GetProbe(std::string probeName) const [member function] |
|
701 |
cls.add_method('GetProbe', |
|
702 |
'ns3::Ptr< ns3::Probe >', |
|
703 |
[param('std::string', 'probeName')], |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
704 |
is_const=True) |
10123 | 705 |
## gnuplot-helper.h (module 'stats'): void ns3::GnuplotHelper::PlotProbe(std::string const & typeId, std::string const & path, std::string const & probeTraceSource, std::string const & title, ns3::GnuplotAggregator::KeyLocation keyLocation=::ns3::GnuplotAggregator::KEY_INSIDE) [member function] |
706 |
cls.add_method('PlotProbe', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
707 |
'void', |
10123 | 708 |
[param('std::string const &', 'typeId'), param('std::string const &', 'path'), param('std::string const &', 'probeTraceSource'), param('std::string const &', 'title'), param('ns3::GnuplotAggregator::KeyLocation', 'keyLocation', default_value='::ns3::GnuplotAggregator::KEY_INSIDE')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
709 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
710 |
|
10123 | 711 |
def register_Ns3Hasher_methods(root_module, cls): |
712 |
## hash.h (module 'core'): ns3::Hasher::Hasher(ns3::Hasher const & arg0) [copy constructor] |
|
713 |
cls.add_constructor([param('ns3::Hasher const &', 'arg0')]) |
|
714 |
## hash.h (module 'core'): ns3::Hasher::Hasher() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
715 |
cls.add_constructor([]) |
10123 | 716 |
## hash.h (module 'core'): ns3::Hasher::Hasher(ns3::Ptr<ns3::Hash::Implementation> hp) [constructor] |
717 |
cls.add_constructor([param('ns3::Ptr< ns3::Hash::Implementation >', 'hp')]) |
|
718 |
## hash.h (module 'core'): uint32_t ns3::Hasher::GetHash32(char const * buffer, size_t const size) [member function] |
|
719 |
cls.add_method('GetHash32', |
|
720 |
'uint32_t', |
|
721 |
[param('char const *', 'buffer'), param('size_t const', 'size')]) |
|
722 |
## hash.h (module 'core'): uint32_t ns3::Hasher::GetHash32(std::string const s) [member function] |
|
723 |
cls.add_method('GetHash32', |
|
724 |
'uint32_t', |
|
725 |
[param('std::string const', 's')]) |
|
726 |
## hash.h (module 'core'): uint64_t ns3::Hasher::GetHash64(char const * buffer, size_t const size) [member function] |
|
727 |
cls.add_method('GetHash64', |
|
728 |
'uint64_t', |
|
729 |
[param('char const *', 'buffer'), param('size_t const', 'size')]) |
|
730 |
## hash.h (module 'core'): uint64_t ns3::Hasher::GetHash64(std::string const s) [member function] |
|
731 |
cls.add_method('GetHash64', |
|
732 |
'uint64_t', |
|
733 |
[param('std::string const', 's')]) |
|
734 |
## hash.h (module 'core'): ns3::Hasher & ns3::Hasher::clear() [member function] |
|
735 |
cls.add_method('clear', |
|
736 |
'ns3::Hasher &', |
|
7724
df7a2f30d5a8
Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7449
diff
changeset
|
737 |
[]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
738 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
739 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
740 |
def register_Ns3ObjectBase_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
741 |
## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
742 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
743 |
## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
744 |
cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
745 |
## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
746 |
cls.add_method('GetAttribute', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
747 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
748 |
[param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
749 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
750 |
## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
751 |
cls.add_method('GetAttributeFailSafe', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
752 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
753 |
[param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
754 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
755 |
## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
756 |
cls.add_method('GetInstanceTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
757 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
758 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
759 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
760 |
## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
761 |
cls.add_method('GetTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
762 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
763 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
764 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
765 |
## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
766 |
cls.add_method('SetAttribute', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
767 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
768 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
769 |
## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
770 |
cls.add_method('SetAttributeFailSafe', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
771 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
772 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
773 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
774 |
cls.add_method('TraceConnect', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
775 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
776 |
[param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
777 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
778 |
cls.add_method('TraceConnectWithoutContext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
779 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
780 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
781 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
782 |
cls.add_method('TraceDisconnect', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
783 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
784 |
[param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
785 |
## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
786 |
cls.add_method('TraceDisconnectWithoutContext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
787 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
788 |
[param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
789 |
## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
790 |
cls.add_method('ConstructSelf', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
791 |
'void', |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
792 |
[param('ns3::AttributeConstructionList const &', 'attributes')], |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
793 |
visibility='protected') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
794 |
## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
795 |
cls.add_method('NotifyConstructionCompleted', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
796 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
797 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
798 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
799 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
800 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
801 |
def register_Ns3ObjectDeleter_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
802 |
## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
803 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
804 |
## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
805 |
cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
806 |
## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
807 |
cls.add_method('Delete', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
808 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
809 |
[param('ns3::Object *', 'object')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
810 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
811 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
812 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
813 |
def register_Ns3ObjectFactory_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
814 |
cls.add_output_stream_operator() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
815 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
816 |
cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
817 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
818 |
cls.add_constructor([]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
819 |
## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
820 |
cls.add_constructor([param('std::string', 'typeId')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
821 |
## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
822 |
cls.add_method('Create', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
823 |
'ns3::Ptr< ns3::Object >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
824 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
825 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
826 |
## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
827 |
cls.add_method('GetTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
828 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
829 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
830 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
831 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
832 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
833 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
834 |
[param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
835 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
836 |
cls.add_method('SetTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
837 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
838 |
[param('ns3::TypeId', 'tid')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
839 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
840 |
cls.add_method('SetTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
841 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
842 |
[param('char const *', 'tid')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
843 |
## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
844 |
cls.add_method('SetTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
845 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
846 |
[param('std::string', 'tid')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
847 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
848 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
849 |
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
850 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
851 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
852 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount(ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
853 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
854 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
855 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
856 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
857 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
858 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
859 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
860 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
861 |
def register_Ns3Simulator_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
862 |
## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
863 |
cls.add_constructor([param('ns3::Simulator const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
864 |
## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
865 |
cls.add_method('Cancel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
866 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
867 |
[param('ns3::EventId const &', 'id')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
868 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
869 |
## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
870 |
cls.add_method('Destroy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
871 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
872 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
873 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
874 |
## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
875 |
cls.add_method('GetContext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
876 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
877 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
878 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
879 |
## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
880 |
cls.add_method('GetDelayLeft', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
881 |
'ns3::Time', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
882 |
[param('ns3::EventId const &', 'id')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
883 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
884 |
## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
885 |
cls.add_method('GetImplementation', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
886 |
'ns3::Ptr< ns3::SimulatorImpl >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
887 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
888 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
889 |
## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
890 |
cls.add_method('GetMaximumSimulationTime', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
891 |
'ns3::Time', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
892 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
893 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
894 |
## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
895 |
cls.add_method('GetSystemId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
896 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
897 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
898 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
899 |
## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
900 |
cls.add_method('IsExpired', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
901 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
902 |
[param('ns3::EventId const &', 'id')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
903 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
904 |
## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
905 |
cls.add_method('IsFinished', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
906 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
907 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
908 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
909 |
## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
910 |
cls.add_method('Now', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
911 |
'ns3::Time', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
912 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
913 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
914 |
## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
915 |
cls.add_method('Remove', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
916 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
917 |
[param('ns3::EventId const &', 'id')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
918 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
919 |
## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
920 |
cls.add_method('SetImplementation', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
921 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
922 |
[param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
923 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
924 |
## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
925 |
cls.add_method('SetScheduler', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
926 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
927 |
[param('ns3::ObjectFactory', 'schedulerFactory')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
928 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
929 |
## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
930 |
cls.add_method('Stop', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
931 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
932 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
933 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
934 |
## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
935 |
cls.add_method('Stop', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
936 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
937 |
[param('ns3::Time const &', 'time')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
938 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
939 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
940 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
941 |
def register_Ns3StatisticalSummary_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
942 |
## data-calculator.h (module 'stats'): ns3::StatisticalSummary::StatisticalSummary() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
943 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
944 |
## data-calculator.h (module 'stats'): ns3::StatisticalSummary::StatisticalSummary(ns3::StatisticalSummary const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
945 |
cls.add_constructor([param('ns3::StatisticalSummary const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
946 |
## data-calculator.h (module 'stats'): long int ns3::StatisticalSummary::getCount() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
947 |
cls.add_method('getCount', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
948 |
'long int', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
949 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
950 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
951 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMax() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
952 |
cls.add_method('getMax', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
953 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
954 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
955 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
956 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMean() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
957 |
cls.add_method('getMean', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
958 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
959 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
960 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
961 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMin() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
962 |
cls.add_method('getMin', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
963 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
964 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
965 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
966 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getSqrSum() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
967 |
cls.add_method('getSqrSum', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
968 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
969 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
970 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
971 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getStddev() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
972 |
cls.add_method('getStddev', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
973 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
974 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
975 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
976 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getSum() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
977 |
cls.add_method('getSum', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
978 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
979 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
980 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
981 |
## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getVariance() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
982 |
cls.add_method('getVariance', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
983 |
'double', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
984 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
985 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
986 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
987 |
|
10795 | 988 |
def register_Ns3TimeWithUnit_methods(root_module, cls): |
989 |
cls.add_output_stream_operator() |
|
990 |
## nstime.h (module 'core'): ns3::TimeWithUnit::TimeWithUnit(ns3::TimeWithUnit const & arg0) [copy constructor] |
|
991 |
cls.add_constructor([param('ns3::TimeWithUnit const &', 'arg0')]) |
|
992 |
## nstime.h (module 'core'): ns3::TimeWithUnit::TimeWithUnit(ns3::Time const time, ns3::Time::Unit const unit) [constructor] |
|
993 |
cls.add_constructor([param('ns3::Time const', 'time'), param('ns3::Time::Unit const', 'unit')]) |
|
994 |
return |
|
995 |
||
10123 | 996 |
def register_Ns3TracedValue__Bool_methods(root_module, cls): |
997 |
## traced-value.h (module 'core'): ns3::TracedValue<bool>::TracedValue() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
998 |
cls.add_constructor([]) |
10123 | 999 |
## traced-value.h (module 'core'): ns3::TracedValue<bool>::TracedValue(ns3::TracedValue<bool> const & o) [copy constructor] |
1000 |
cls.add_constructor([param('ns3::TracedValue< bool > const &', 'o')]) |
|
1001 |
## traced-value.h (module 'core'): ns3::TracedValue<bool>::TracedValue(bool const & v) [constructor] |
|
1002 |
cls.add_constructor([param('bool const &', 'v')]) |
|
1003 |
## traced-value.h (module 'core'): void ns3::TracedValue<bool>::Connect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1004 |
cls.add_method('Connect', |
|
1005 |
'void', |
|
1006 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1007 |
## traced-value.h (module 'core'): void ns3::TracedValue<bool>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1008 |
cls.add_method('ConnectWithoutContext', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1009 |
'void', |
10123 | 1010 |
[param('ns3::CallbackBase const &', 'cb')]) |
1011 |
## traced-value.h (module 'core'): void ns3::TracedValue<bool>::Disconnect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1012 |
cls.add_method('Disconnect', |
|
1013 |
'void', |
|
1014 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1015 |
## traced-value.h (module 'core'): void ns3::TracedValue<bool>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1016 |
cls.add_method('DisconnectWithoutContext', |
|
1017 |
'void', |
|
1018 |
[param('ns3::CallbackBase const &', 'cb')]) |
|
1019 |
## traced-value.h (module 'core'): bool ns3::TracedValue<bool>::Get() const [member function] |
|
1020 |
cls.add_method('Get', |
|
1021 |
'bool', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1022 |
[], |
10123 | 1023 |
is_const=True) |
1024 |
## traced-value.h (module 'core'): void ns3::TracedValue<bool>::Set(bool const & v) [member function] |
|
1025 |
cls.add_method('Set', |
|
1026 |
'void', |
|
1027 |
[param('bool const &', 'v')]) |
|
1028 |
return |
|
1029 |
||
1030 |
def register_Ns3TracedValue__Double_methods(root_module, cls): |
|
1031 |
## traced-value.h (module 'core'): ns3::TracedValue<double>::TracedValue() [constructor] |
|
1032 |
cls.add_constructor([]) |
|
1033 |
## traced-value.h (module 'core'): ns3::TracedValue<double>::TracedValue(ns3::TracedValue<double> const & o) [copy constructor] |
|
1034 |
cls.add_constructor([param('ns3::TracedValue< double > const &', 'o')]) |
|
1035 |
## traced-value.h (module 'core'): ns3::TracedValue<double>::TracedValue(double const & v) [constructor] |
|
1036 |
cls.add_constructor([param('double const &', 'v')]) |
|
1037 |
## traced-value.h (module 'core'): void ns3::TracedValue<double>::Connect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1038 |
cls.add_method('Connect', |
|
1039 |
'void', |
|
1040 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1041 |
## traced-value.h (module 'core'): void ns3::TracedValue<double>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1042 |
cls.add_method('ConnectWithoutContext', |
|
1043 |
'void', |
|
1044 |
[param('ns3::CallbackBase const &', 'cb')]) |
|
1045 |
## traced-value.h (module 'core'): void ns3::TracedValue<double>::Disconnect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1046 |
cls.add_method('Disconnect', |
|
1047 |
'void', |
|
1048 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1049 |
## traced-value.h (module 'core'): void ns3::TracedValue<double>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1050 |
cls.add_method('DisconnectWithoutContext', |
|
1051 |
'void', |
|
1052 |
[param('ns3::CallbackBase const &', 'cb')]) |
|
1053 |
## traced-value.h (module 'core'): double ns3::TracedValue<double>::Get() const [member function] |
|
1054 |
cls.add_method('Get', |
|
1055 |
'double', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1056 |
[], |
10123 | 1057 |
is_const=True) |
1058 |
## traced-value.h (module 'core'): void ns3::TracedValue<double>::Set(double const & v) [member function] |
|
1059 |
cls.add_method('Set', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1060 |
'void', |
10123 | 1061 |
[param('double const &', 'v')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1062 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1063 |
|
10123 | 1064 |
def register_Ns3TracedValue__Unsigned_char_methods(root_module, cls): |
1065 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned char>::TracedValue() [constructor] |
|
1066 |
cls.add_constructor([]) |
|
1067 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned char>::TracedValue(ns3::TracedValue<unsigned char> const & o) [copy constructor] |
|
1068 |
cls.add_constructor([param('ns3::TracedValue< unsigned char > const &', 'o')]) |
|
1069 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned char>::TracedValue(unsigned char const & v) [constructor] |
|
1070 |
cls.add_constructor([param('unsigned char const &', 'v')]) |
|
1071 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned char>::Connect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1072 |
cls.add_method('Connect', |
|
1073 |
'void', |
|
1074 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1075 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned char>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1076 |
cls.add_method('ConnectWithoutContext', |
|
1077 |
'void', |
|
1078 |
[param('ns3::CallbackBase const &', 'cb')]) |
|
1079 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned char>::Disconnect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1080 |
cls.add_method('Disconnect', |
|
1081 |
'void', |
|
1082 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1083 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned char>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1084 |
cls.add_method('DisconnectWithoutContext', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1085 |
'void', |
10123 | 1086 |
[param('ns3::CallbackBase const &', 'cb')]) |
1087 |
## traced-value.h (module 'core'): unsigned char ns3::TracedValue<unsigned char>::Get() const [member function] |
|
1088 |
cls.add_method('Get', |
|
1089 |
'unsigned char', |
|
1090 |
[], |
|
1091 |
is_const=True) |
|
1092 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned char>::Set(unsigned char const & v) [member function] |
|
1093 |
cls.add_method('Set', |
|
1094 |
'void', |
|
1095 |
[param('unsigned char const &', 'v')]) |
|
1096 |
return |
|
1097 |
||
1098 |
def register_Ns3TracedValue__Unsigned_int_methods(root_module, cls): |
|
1099 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned int>::TracedValue() [constructor] |
|
1100 |
cls.add_constructor([]) |
|
1101 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned int>::TracedValue(ns3::TracedValue<unsigned int> const & o) [copy constructor] |
|
1102 |
cls.add_constructor([param('ns3::TracedValue< unsigned int > const &', 'o')]) |
|
1103 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned int>::TracedValue(unsigned int const & v) [constructor] |
|
1104 |
cls.add_constructor([param('unsigned int const &', 'v')]) |
|
1105 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned int>::Connect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1106 |
cls.add_method('Connect', |
|
1107 |
'void', |
|
1108 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1109 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned int>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1110 |
cls.add_method('ConnectWithoutContext', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1111 |
'void', |
10123 | 1112 |
[param('ns3::CallbackBase const &', 'cb')]) |
1113 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned int>::Disconnect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1114 |
cls.add_method('Disconnect', |
|
1115 |
'void', |
|
1116 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1117 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned int>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1118 |
cls.add_method('DisconnectWithoutContext', |
|
1119 |
'void', |
|
1120 |
[param('ns3::CallbackBase const &', 'cb')]) |
|
1121 |
## traced-value.h (module 'core'): unsigned int ns3::TracedValue<unsigned int>::Get() const [member function] |
|
1122 |
cls.add_method('Get', |
|
1123 |
'unsigned int', |
|
1124 |
[], |
|
1125 |
is_const=True) |
|
1126 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned int>::Set(unsigned int const & v) [member function] |
|
1127 |
cls.add_method('Set', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1128 |
'void', |
10123 | 1129 |
[param('unsigned int const &', 'v')]) |
1130 |
return |
|
1131 |
||
1132 |
def register_Ns3TracedValue__Unsigned_short_methods(root_module, cls): |
|
1133 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned short>::TracedValue() [constructor] |
|
1134 |
cls.add_constructor([]) |
|
1135 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned short>::TracedValue(ns3::TracedValue<unsigned short> const & o) [copy constructor] |
|
1136 |
cls.add_constructor([param('ns3::TracedValue< unsigned short > const &', 'o')]) |
|
1137 |
## traced-value.h (module 'core'): ns3::TracedValue<unsigned short>::TracedValue(short unsigned int const & v) [constructor] |
|
1138 |
cls.add_constructor([param('short unsigned int const &', 'v')]) |
|
1139 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned short>::Connect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1140 |
cls.add_method('Connect', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1141 |
'void', |
10123 | 1142 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
1143 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned short>::ConnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1144 |
cls.add_method('ConnectWithoutContext', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1145 |
'void', |
10123 | 1146 |
[param('ns3::CallbackBase const &', 'cb')]) |
1147 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned short>::Disconnect(ns3::CallbackBase const & cb, std::basic_string<char,std::char_traits<char>,std::allocator<char> > path) [member function] |
|
1148 |
cls.add_method('Disconnect', |
|
1149 |
'void', |
|
1150 |
[param('ns3::CallbackBase const &', 'cb'), param('std::string', 'path')]) |
|
1151 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned short>::DisconnectWithoutContext(ns3::CallbackBase const & cb) [member function] |
|
1152 |
cls.add_method('DisconnectWithoutContext', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1153 |
'void', |
10123 | 1154 |
[param('ns3::CallbackBase const &', 'cb')]) |
1155 |
## traced-value.h (module 'core'): short unsigned int ns3::TracedValue<unsigned short>::Get() const [member function] |
|
1156 |
cls.add_method('Get', |
|
1157 |
'short unsigned int', |
|
1158 |
[], |
|
1159 |
is_const=True) |
|
1160 |
## traced-value.h (module 'core'): void ns3::TracedValue<unsigned short>::Set(short unsigned int const & v) [member function] |
|
1161 |
cls.add_method('Set', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1162 |
'void', |
10123 | 1163 |
[param('short unsigned int const &', 'v')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1164 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1165 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1166 |
def register_Ns3TypeId_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1167 |
cls.add_binary_comparison_operator('<') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1168 |
cls.add_binary_comparison_operator('!=') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1169 |
cls.add_output_stream_operator() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1170 |
cls.add_binary_comparison_operator('==') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1171 |
## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1172 |
cls.add_constructor([param('char const *', 'name')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1173 |
## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1174 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1175 |
## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1176 |
cls.add_constructor([param('ns3::TypeId const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1177 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1178 |
cls.add_method('AddAttribute', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1179 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1180 |
[param('std::string', 'name'), param('std::string', 'help'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1181 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, uint32_t flags, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1182 |
cls.add_method('AddAttribute', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1183 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1184 |
[param('std::string', 'name'), param('std::string', 'help'), param('uint32_t', 'flags'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1185 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1186 |
cls.add_method('AddTraceSource', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1187 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1188 |
[param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1189 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1190 |
cls.add_method('GetAttribute', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1191 |
'ns3::TypeId::AttributeInformation', |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1192 |
[param('uint32_t', 'i')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1193 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1194 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1195 |
cls.add_method('GetAttributeFullName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1196 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1197 |
[param('uint32_t', 'i')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1198 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1199 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1200 |
cls.add_method('GetAttributeN', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1201 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1202 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1203 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1204 |
## type-id.h (module 'core'): ns3::Callback<ns3::ObjectBase*,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::TypeId::GetConstructor() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1205 |
cls.add_method('GetConstructor', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1206 |
'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1207 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1208 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1209 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1210 |
cls.add_method('GetGroupName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1211 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1212 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1213 |
is_const=True) |
10123 | 1214 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetHash() const [member function] |
1215 |
cls.add_method('GetHash', |
|
1216 |
'uint32_t', |
|
1217 |
[], |
|
1218 |
is_const=True) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1219 |
## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1220 |
cls.add_method('GetName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1221 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1222 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1223 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1224 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1225 |
cls.add_method('GetParent', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1226 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1227 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1228 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1229 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1230 |
cls.add_method('GetRegistered', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1231 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1232 |
[param('uint32_t', 'i')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1233 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1234 |
## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1235 |
cls.add_method('GetRegisteredN', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1236 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1237 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1238 |
is_static=True) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1239 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1240 |
cls.add_method('GetTraceSource', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1241 |
'ns3::TypeId::TraceSourceInformation', |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1242 |
[param('uint32_t', 'i')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1243 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1244 |
## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1245 |
cls.add_method('GetTraceSourceN', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1246 |
'uint32_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1247 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1248 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1249 |
## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1250 |
cls.add_method('GetUid', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1251 |
'uint16_t', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1252 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1253 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1254 |
## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1255 |
cls.add_method('HasConstructor', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1256 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1257 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1258 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1259 |
## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1260 |
cls.add_method('HasParent', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1261 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1262 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1263 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1264 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1265 |
cls.add_method('HideFromDocumentation', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1266 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1267 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1268 |
## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1269 |
cls.add_method('IsChildOf', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1270 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1271 |
[param('ns3::TypeId', 'other')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1272 |
is_const=True) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1273 |
## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1274 |
cls.add_method('LookupAttributeByName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1275 |
'bool', |
7724
df7a2f30d5a8
Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7449
diff
changeset
|
1276 |
[param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1277 |
is_const=True) |
10123 | 1278 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByHash(uint32_t hash) [member function] |
1279 |
cls.add_method('LookupByHash', |
|
1280 |
'ns3::TypeId', |
|
1281 |
[param('uint32_t', 'hash')], |
|
1282 |
is_static=True) |
|
1283 |
## type-id.h (module 'core'): static bool ns3::TypeId::LookupByHashFailSafe(uint32_t hash, ns3::TypeId * tid) [member function] |
|
1284 |
cls.add_method('LookupByHashFailSafe', |
|
1285 |
'bool', |
|
1286 |
[param('uint32_t', 'hash'), param('ns3::TypeId *', 'tid')], |
|
1287 |
is_static=True) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1288 |
## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1289 |
cls.add_method('LookupByName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1290 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1291 |
[param('std::string', 'name')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1292 |
is_static=True) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1293 |
## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1294 |
cls.add_method('LookupTraceSourceByName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1295 |
'ns3::Ptr< ns3::TraceSourceAccessor const >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1296 |
[param('std::string', 'name')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1297 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1298 |
## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1299 |
cls.add_method('MustHideFromDocumentation', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1300 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1301 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1302 |
is_const=True) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1303 |
## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1304 |
cls.add_method('SetAttributeInitialValue', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1305 |
'bool', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1306 |
[param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1307 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1308 |
cls.add_method('SetGroupName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1309 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1310 |
[param('std::string', 'groupName')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1311 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1312 |
cls.add_method('SetParent', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1313 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1314 |
[param('ns3::TypeId', 'tid')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1315 |
## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1316 |
cls.add_method('SetUid', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1317 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1318 |
[param('uint16_t', 'tid')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1319 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1320 |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1321 |
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls): |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1322 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1323 |
cls.add_constructor([]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1324 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1325 |
cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1326 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1327 |
cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1328 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1329 |
cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1330 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1331 |
cls.add_instance_attribute('flags', 'uint32_t', is_const=False) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1332 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1333 |
cls.add_instance_attribute('help', 'std::string', is_const=False) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1334 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1335 |
cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1336 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1337 |
cls.add_instance_attribute('name', 'std::string', is_const=False) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1338 |
## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1339 |
cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1340 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1341 |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1342 |
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls): |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1343 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1344 |
cls.add_constructor([]) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1345 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1346 |
cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1347 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1348 |
cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1349 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1350 |
cls.add_instance_attribute('help', 'std::string', is_const=False) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1351 |
## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1352 |
cls.add_instance_attribute('name', 'std::string', is_const=False) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1353 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1354 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1355 |
def register_Ns3Empty_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1356 |
## empty.h (module 'core'): ns3::empty::empty() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1357 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1358 |
## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1359 |
cls.add_constructor([param('ns3::empty const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1360 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1361 |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1362 |
def register_Ns3Int64x64_t_methods(root_module, cls): |
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1363 |
cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1364 |
cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1365 |
cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right')) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1366 |
cls.add_unary_numeric_operator('-') |
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1367 |
cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right')) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1368 |
cls.add_binary_comparison_operator('<') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1369 |
cls.add_binary_comparison_operator('>') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1370 |
cls.add_binary_comparison_operator('!=') |
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1371 |
cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1372 |
cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1373 |
cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1374 |
cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', u'right')) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1375 |
cls.add_output_stream_operator() |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1376 |
cls.add_binary_comparison_operator('<=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1377 |
cls.add_binary_comparison_operator('==') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1378 |
cls.add_binary_comparison_operator('>=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1379 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1380 |
cls.add_constructor([]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1381 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1382 |
cls.add_constructor([param('double', 'v')]) |
10628
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
1383 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long double v) [constructor] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
1384 |
cls.add_constructor([param('long double', 'v')]) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1385 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1386 |
cls.add_constructor([param('int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1387 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1388 |
cls.add_constructor([param('long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1389 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1390 |
cls.add_constructor([param('long long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1391 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1392 |
cls.add_constructor([param('unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1393 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1394 |
cls.add_constructor([param('long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1395 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1396 |
cls.add_constructor([param('long long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1397 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1398 |
cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1399 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1400 |
cls.add_constructor([param('ns3::int64x64_t const &', 'o')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1401 |
## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1402 |
cls.add_method('GetDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1403 |
'double', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1404 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1405 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1406 |
## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1407 |
cls.add_method('GetHigh', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1408 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1409 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1410 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1411 |
## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1412 |
cls.add_method('GetLow', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1413 |
'uint64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1414 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1415 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1416 |
## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1417 |
cls.add_method('Invert', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1418 |
'ns3::int64x64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1419 |
[param('uint64_t', 'v')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1420 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1421 |
## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1422 |
cls.add_method('MulByInvert', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1423 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1424 |
[param('ns3::int64x64_t const &', 'o')]) |
10628
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
1425 |
## int64x64-double.h (module 'core'): ns3::int64x64_t::implementation [variable] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
1426 |
cls.add_static_attribute('implementation', 'ns3::int64x64_t::impl_type const', is_const=True) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1427 |
return |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1428 |
|
9901 | 1429 |
def register_Ns3Gnuplot2dDataset_methods(root_module, cls): |
1430 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dDataset::Gnuplot2dDataset(ns3::Gnuplot2dDataset const & arg0) [copy constructor] |
|
1431 |
cls.add_constructor([param('ns3::Gnuplot2dDataset const &', 'arg0')]) |
|
1432 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dDataset::Gnuplot2dDataset(std::string const & title="Untitled") [constructor] |
|
1433 |
cls.add_constructor([param('std::string const &', 'title', default_value='"Untitled"')]) |
|
1434 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dDataset::Add(double x, double y) [member function] |
|
1435 |
cls.add_method('Add', |
|
1436 |
'void', |
|
1437 |
[param('double', 'x'), param('double', 'y')]) |
|
1438 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dDataset::Add(double x, double y, double errorDelta) [member function] |
|
1439 |
cls.add_method('Add', |
|
1440 |
'void', |
|
1441 |
[param('double', 'x'), param('double', 'y'), param('double', 'errorDelta')]) |
|
1442 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dDataset::Add(double x, double y, double xErrorDelta, double yErrorDelta) [member function] |
|
1443 |
cls.add_method('Add', |
|
1444 |
'void', |
|
1445 |
[param('double', 'x'), param('double', 'y'), param('double', 'xErrorDelta'), param('double', 'yErrorDelta')]) |
|
1446 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dDataset::AddEmptyLine() [member function] |
|
1447 |
cls.add_method('AddEmptyLine', |
|
1448 |
'void', |
|
1449 |
[]) |
|
1450 |
## gnuplot.h (module 'stats'): static void ns3::Gnuplot2dDataset::SetDefaultErrorBars(ns3::Gnuplot2dDataset::ErrorBars errorBars) [member function] |
|
1451 |
cls.add_method('SetDefaultErrorBars', |
|
1452 |
'void', |
|
1453 |
[param('ns3::Gnuplot2dDataset::ErrorBars', 'errorBars')], |
|
1454 |
is_static=True) |
|
1455 |
## gnuplot.h (module 'stats'): static void ns3::Gnuplot2dDataset::SetDefaultStyle(ns3::Gnuplot2dDataset::Style style) [member function] |
|
1456 |
cls.add_method('SetDefaultStyle', |
|
1457 |
'void', |
|
1458 |
[param('ns3::Gnuplot2dDataset::Style', 'style')], |
|
1459 |
is_static=True) |
|
1460 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dDataset::SetErrorBars(ns3::Gnuplot2dDataset::ErrorBars errorBars) [member function] |
|
1461 |
cls.add_method('SetErrorBars', |
|
1462 |
'void', |
|
1463 |
[param('ns3::Gnuplot2dDataset::ErrorBars', 'errorBars')]) |
|
1464 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dDataset::SetStyle(ns3::Gnuplot2dDataset::Style style) [member function] |
|
1465 |
cls.add_method('SetStyle', |
|
1466 |
'void', |
|
1467 |
[param('ns3::Gnuplot2dDataset::Style', 'style')]) |
|
1468 |
return |
|
1469 |
||
1470 |
def register_Ns3Gnuplot2dFunction_methods(root_module, cls): |
|
1471 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dFunction::Gnuplot2dFunction(ns3::Gnuplot2dFunction const & arg0) [copy constructor] |
|
1472 |
cls.add_constructor([param('ns3::Gnuplot2dFunction const &', 'arg0')]) |
|
1473 |
## gnuplot.h (module 'stats'): ns3::Gnuplot2dFunction::Gnuplot2dFunction(std::string const & title="Untitled", std::string const & function="") [constructor] |
|
1474 |
cls.add_constructor([param('std::string const &', 'title', default_value='"Untitled"'), param('std::string const &', 'function', default_value='""')]) |
|
1475 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot2dFunction::SetFunction(std::string const & function) [member function] |
|
1476 |
cls.add_method('SetFunction', |
|
1477 |
'void', |
|
1478 |
[param('std::string const &', 'function')]) |
|
1479 |
return |
|
1480 |
||
1481 |
def register_Ns3Gnuplot3dDataset_methods(root_module, cls): |
|
1482 |
## gnuplot.h (module 'stats'): ns3::Gnuplot3dDataset::Gnuplot3dDataset(ns3::Gnuplot3dDataset const & arg0) [copy constructor] |
|
1483 |
cls.add_constructor([param('ns3::Gnuplot3dDataset const &', 'arg0')]) |
|
1484 |
## gnuplot.h (module 'stats'): ns3::Gnuplot3dDataset::Gnuplot3dDataset(std::string const & title="Untitled") [constructor] |
|
1485 |
cls.add_constructor([param('std::string const &', 'title', default_value='"Untitled"')]) |
|
1486 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot3dDataset::Add(double x, double y, double z) [member function] |
|
1487 |
cls.add_method('Add', |
|
1488 |
'void', |
|
1489 |
[param('double', 'x'), param('double', 'y'), param('double', 'z')]) |
|
1490 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot3dDataset::AddEmptyLine() [member function] |
|
1491 |
cls.add_method('AddEmptyLine', |
|
1492 |
'void', |
|
1493 |
[]) |
|
1494 |
## gnuplot.h (module 'stats'): static void ns3::Gnuplot3dDataset::SetDefaultStyle(std::string const & style) [member function] |
|
1495 |
cls.add_method('SetDefaultStyle', |
|
1496 |
'void', |
|
1497 |
[param('std::string const &', 'style')], |
|
1498 |
is_static=True) |
|
1499 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot3dDataset::SetStyle(std::string const & style) [member function] |
|
1500 |
cls.add_method('SetStyle', |
|
1501 |
'void', |
|
1502 |
[param('std::string const &', 'style')]) |
|
1503 |
return |
|
1504 |
||
1505 |
def register_Ns3Gnuplot3dFunction_methods(root_module, cls): |
|
1506 |
## gnuplot.h (module 'stats'): ns3::Gnuplot3dFunction::Gnuplot3dFunction(ns3::Gnuplot3dFunction const & arg0) [copy constructor] |
|
1507 |
cls.add_constructor([param('ns3::Gnuplot3dFunction const &', 'arg0')]) |
|
1508 |
## gnuplot.h (module 'stats'): ns3::Gnuplot3dFunction::Gnuplot3dFunction(std::string const & title="Untitled", std::string const & function="") [constructor] |
|
1509 |
cls.add_constructor([param('std::string const &', 'title', default_value='"Untitled"'), param('std::string const &', 'function', default_value='""')]) |
|
1510 |
## gnuplot.h (module 'stats'): void ns3::Gnuplot3dFunction::SetFunction(std::string const & function) [member function] |
|
1511 |
cls.add_method('SetFunction', |
|
1512 |
'void', |
|
1513 |
[param('std::string const &', 'function')]) |
|
1514 |
return |
|
1515 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1516 |
def register_Ns3Object_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1517 |
## object.h (module 'core'): ns3::Object::Object() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1518 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1519 |
## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1520 |
cls.add_method('AggregateObject', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1521 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1522 |
[param('ns3::Ptr< ns3::Object >', 'other')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1523 |
## object.h (module 'core'): void ns3::Object::Dispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1524 |
cls.add_method('Dispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1525 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1526 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1527 |
## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1528 |
cls.add_method('GetAggregateIterator', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1529 |
'ns3::Object::AggregateIterator', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1530 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1531 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1532 |
## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1533 |
cls.add_method('GetInstanceTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1534 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1535 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1536 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1537 |
## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1538 |
cls.add_method('GetTypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1539 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1540 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1541 |
is_static=True) |
9708 | 1542 |
## object.h (module 'core'): void ns3::Object::Initialize() [member function] |
1543 |
cls.add_method('Initialize', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1544 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1545 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1546 |
## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1547 |
cls.add_constructor([param('ns3::Object const &', 'o')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1548 |
visibility='protected') |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1549 |
## object.h (module 'core'): void ns3::Object::DoDispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1550 |
cls.add_method('DoDispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1551 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1552 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1553 |
visibility='protected', is_virtual=True) |
9708 | 1554 |
## object.h (module 'core'): void ns3::Object::DoInitialize() [member function] |
1555 |
cls.add_method('DoInitialize', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1556 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1557 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1558 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1559 |
## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1560 |
cls.add_method('NotifyNewAggregate', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1561 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1562 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1563 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1564 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1565 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1566 |
def register_Ns3ObjectAggregateIterator_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1567 |
## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1568 |
cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1569 |
## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1570 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1571 |
## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1572 |
cls.add_method('HasNext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1573 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1574 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1575 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1576 |
## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1577 |
cls.add_method('Next', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1578 |
'ns3::Ptr< ns3::Object const >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1579 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1580 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1581 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1582 |
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1583 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1584 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1585 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1586 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1587 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1588 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1589 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1590 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1591 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1592 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1593 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1594 |
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1595 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1596 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1597 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1598 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1599 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1600 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1601 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1602 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1603 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1604 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1605 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1606 |
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1607 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1608 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1609 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1610 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1611 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1612 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1613 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1614 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1615 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1616 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1617 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1618 |
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1619 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1620 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1621 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1622 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1623 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1624 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1625 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1626 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1627 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1628 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1629 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1630 |
def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1631 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1632 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1633 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount(ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > const & o) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1634 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1635 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1636 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1637 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1638 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1639 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1640 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1641 |
|
10123 | 1642 |
def register_Ns3SimpleRefCount__Ns3HashImplementation_Ns3Empty_Ns3DefaultDeleter__lt__ns3HashImplementation__gt___methods(root_module, cls): |
1643 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::SimpleRefCount() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1644 |
cls.add_constructor([]) |
10123 | 1645 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> > const & o) [copy constructor] |
1646 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter< ns3::Hash::Implementation > > const &', 'o')]) |
|
1647 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::Cleanup() [member function] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1648 |
cls.add_method('Cleanup', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1649 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1650 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1651 |
is_static=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1652 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1653 |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1654 |
def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls): |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1655 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1656 |
cls.add_constructor([]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1657 |
## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > const & o) [copy constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1658 |
cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1659 |
## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1660 |
cls.add_method('Cleanup', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1661 |
'void', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1662 |
[], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1663 |
is_static=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1664 |
return |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1665 |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1666 |
def register_Ns3Time_methods(root_module, cls): |
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1667 |
cls.add_binary_numeric_operator('*', root_module['ns3::Time'], root_module['ns3::Time'], param('int64_t const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1668 |
cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1669 |
cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1670 |
cls.add_binary_numeric_operator('/', root_module['ns3::Time'], root_module['ns3::Time'], param('int64_t const &', u'right')) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1671 |
cls.add_binary_comparison_operator('<') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1672 |
cls.add_binary_comparison_operator('>') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1673 |
cls.add_binary_comparison_operator('!=') |
10631
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1674 |
cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', u'right')) |
a258a16d4793
bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents:
10628
diff
changeset
|
1675 |
cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', u'right')) |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1676 |
cls.add_output_stream_operator() |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1677 |
cls.add_binary_comparison_operator('<=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1678 |
cls.add_binary_comparison_operator('==') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1679 |
cls.add_binary_comparison_operator('>=') |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1680 |
## nstime.h (module 'core'): ns3::Time::Time() [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1681 |
cls.add_constructor([]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1682 |
## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1683 |
cls.add_constructor([param('ns3::Time const &', 'o')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1684 |
## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1685 |
cls.add_constructor([param('double', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1686 |
## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1687 |
cls.add_constructor([param('int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1688 |
## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1689 |
cls.add_constructor([param('long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1690 |
## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1691 |
cls.add_constructor([param('long long int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1692 |
## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1693 |
cls.add_constructor([param('unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1694 |
## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1695 |
cls.add_constructor([param('long unsigned int', 'v')]) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1696 |
## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1697 |
cls.add_constructor([param('long long unsigned int', 'v')]) |
10956 | 1698 |
## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & v) [constructor] |
1699 |
cls.add_constructor([param('ns3::int64x64_t const &', 'v')]) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1700 |
## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1701 |
cls.add_constructor([param('std::string const &', 's')]) |
10795 | 1702 |
## nstime.h (module 'core'): ns3::TimeWithUnit ns3::Time::As(ns3::Time::Unit const unit) const [member function] |
1703 |
cls.add_method('As', |
|
1704 |
'ns3::TimeWithUnit', |
|
1705 |
[param('ns3::Time::Unit const', 'unit')], |
|
1706 |
is_const=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1707 |
## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1708 |
cls.add_method('Compare', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1709 |
'int', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1710 |
[param('ns3::Time const &', 'o')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1711 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1712 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1713 |
cls.add_method('From', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1714 |
'ns3::Time', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1715 |
[param('ns3::int64x64_t const &', 'value')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1716 |
is_static=True) |
10956 | 1717 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value, ns3::Time::Unit unit) [member function] |
1718 |
cls.add_method('From', |
|
1719 |
'ns3::Time', |
|
1720 |
[param('ns3::int64x64_t const &', 'value'), param('ns3::Time::Unit', 'unit')], |
|
1721 |
is_static=True) |
|
1722 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit unit) [member function] |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1723 |
cls.add_method('FromDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1724 |
'ns3::Time', |
10956 | 1725 |
[param('double', 'value'), param('ns3::Time::Unit', 'unit')], |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1726 |
is_static=True) |
10956 | 1727 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit unit) [member function] |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1728 |
cls.add_method('FromInteger', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1729 |
'ns3::Time', |
10956 | 1730 |
[param('uint64_t', 'value'), param('ns3::Time::Unit', 'unit')], |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1731 |
is_static=True) |
10534 | 1732 |
## nstime.h (module 'core'): double ns3::Time::GetDays() const [member function] |
1733 |
cls.add_method('GetDays', |
|
1734 |
'double', |
|
1735 |
[], |
|
1736 |
is_const=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1737 |
## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1738 |
cls.add_method('GetDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1739 |
'double', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1740 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1741 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1742 |
## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1743 |
cls.add_method('GetFemtoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1744 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1745 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1746 |
is_const=True) |
10534 | 1747 |
## nstime.h (module 'core'): double ns3::Time::GetHours() const [member function] |
1748 |
cls.add_method('GetHours', |
|
1749 |
'double', |
|
1750 |
[], |
|
1751 |
is_const=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1752 |
## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1753 |
cls.add_method('GetInteger', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1754 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1755 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1756 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1757 |
## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1758 |
cls.add_method('GetMicroSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1759 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1760 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1761 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1762 |
## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1763 |
cls.add_method('GetMilliSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1764 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1765 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1766 |
is_const=True) |
10534 | 1767 |
## nstime.h (module 'core'): double ns3::Time::GetMinutes() const [member function] |
1768 |
cls.add_method('GetMinutes', |
|
1769 |
'double', |
|
1770 |
[], |
|
1771 |
is_const=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1772 |
## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1773 |
cls.add_method('GetNanoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1774 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1775 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1776 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1777 |
## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1778 |
cls.add_method('GetPicoSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1779 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1780 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1781 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1782 |
## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1783 |
cls.add_method('GetResolution', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1784 |
'ns3::Time::Unit', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1785 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1786 |
is_static=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1787 |
## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1788 |
cls.add_method('GetSeconds', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1789 |
'double', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1790 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1791 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1792 |
## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1793 |
cls.add_method('GetTimeStep', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1794 |
'int64_t', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1795 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1796 |
is_const=True) |
10534 | 1797 |
## nstime.h (module 'core'): double ns3::Time::GetYears() const [member function] |
1798 |
cls.add_method('GetYears', |
|
1799 |
'double', |
|
1800 |
[], |
|
1801 |
is_const=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1802 |
## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1803 |
cls.add_method('IsNegative', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1804 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1805 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1806 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1807 |
## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1808 |
cls.add_method('IsPositive', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1809 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1810 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1811 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1812 |
## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1813 |
cls.add_method('IsStrictlyNegative', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1814 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1815 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1816 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1817 |
## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1818 |
cls.add_method('IsStrictlyPositive', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1819 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1820 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1821 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1822 |
## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1823 |
cls.add_method('IsZero', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1824 |
'bool', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1825 |
[], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1826 |
is_const=True) |
10123 | 1827 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::Max() [member function] |
1828 |
cls.add_method('Max', |
|
9901 | 1829 |
'ns3::Time', |
1830 |
[], |
|
1831 |
is_static=True) |
|
10123 | 1832 |
## nstime.h (module 'core'): static ns3::Time ns3::Time::Min() [member function] |
1833 |
cls.add_method('Min', |
|
9901 | 1834 |
'ns3::Time', |
1835 |
[], |
|
1836 |
is_static=True) |
|
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1837 |
## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function] |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1838 |
cls.add_method('SetResolution', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1839 |
'void', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1840 |
[param('ns3::Time::Unit', 'resolution')], |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1841 |
is_static=True) |
10183 | 1842 |
## nstime.h (module 'core'): static bool ns3::Time::StaticInit() [member function] |
1843 |
cls.add_method('StaticInit', |
|
1844 |
'bool', |
|
1845 |
[], |
|
1846 |
is_static=True) |
|
10956 | 1847 |
## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit unit) const [member function] |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1848 |
cls.add_method('To', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1849 |
'ns3::int64x64_t', |
10956 | 1850 |
[param('ns3::Time::Unit', 'unit')], |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1851 |
is_const=True) |
10956 | 1852 |
## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit unit) const [member function] |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1853 |
cls.add_method('ToDouble', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1854 |
'double', |
10956 | 1855 |
[param('ns3::Time::Unit', 'unit')], |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1856 |
is_const=True) |
10956 | 1857 |
## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit unit) const [member function] |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1858 |
cls.add_method('ToInteger', |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1859 |
'int64_t', |
10956 | 1860 |
[param('ns3::Time::Unit', 'unit')], |
7055
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1861 |
is_const=True) |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1862 |
return |
e65505ea6cd4
modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents:
6932
diff
changeset
|
1863 |
|
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1864 |
def register_Ns3TraceSourceAccessor_methods(root_module, cls): |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1865 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1866 |
cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1867 |
## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1868 |
cls.add_constructor([]) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1869 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1870 |
cls.add_method('Connect', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1871 |
'bool', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1872 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1873 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1874 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1875 |
cls.add_method('ConnectWithoutContext', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1876 |
'bool', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1877 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1878 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1879 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1880 |
cls.add_method('Disconnect', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1881 |
'bool', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1882 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1883 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1884 |
## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1885 |
cls.add_method('DisconnectWithoutContext', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1886 |
'bool', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1887 |
[param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1888 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1889 |
return |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1890 |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1891 |
def register_Ns3AttributeAccessor_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1892 |
## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1893 |
cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1894 |
## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1895 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1896 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1897 |
cls.add_method('Get', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1898 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1899 |
[param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1900 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1901 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1902 |
cls.add_method('HasGetter', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1903 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1904 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1905 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1906 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1907 |
cls.add_method('HasSetter', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1908 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1909 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1910 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1911 |
## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1912 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1913 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1914 |
[param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1915 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1916 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1917 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1918 |
def register_Ns3AttributeChecker_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1919 |
## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1920 |
cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1921 |
## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1922 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1923 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1924 |
cls.add_method('Check', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1925 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1926 |
[param('ns3::AttributeValue const &', 'value')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1927 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1928 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1929 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1930 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1931 |
[param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1932 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1933 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1934 |
cls.add_method('Create', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1935 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1936 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1937 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
7403
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1938 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function] |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1939 |
cls.add_method('CreateValidValue', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1940 |
'ns3::Ptr< ns3::AttributeValue >', |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1941 |
[param('ns3::AttributeValue const &', 'value')], |
423566595b8a
Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
7375
diff
changeset
|
1942 |
is_const=True) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1943 |
## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1944 |
cls.add_method('GetUnderlyingTypeInformation', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1945 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1946 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1947 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1948 |
## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1949 |
cls.add_method('GetValueTypeName', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1950 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1951 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1952 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1953 |
## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1954 |
cls.add_method('HasUnderlyingTypeInformation', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1955 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1956 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1957 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1958 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1959 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1960 |
def register_Ns3AttributeValue_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1961 |
## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1962 |
cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1963 |
## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1964 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1965 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1966 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1967 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1968 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1969 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1970 |
## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1971 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1972 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1973 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1974 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1975 |
## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1976 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1977 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1978 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1979 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1980 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
1981 |
|
10123 | 1982 |
def register_Ns3BooleanChecker_methods(root_module, cls): |
1983 |
## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor] |
|
1984 |
cls.add_constructor([]) |
|
1985 |
## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor] |
|
1986 |
cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')]) |
|
1987 |
return |
|
1988 |
||
1989 |
def register_Ns3BooleanValue_methods(root_module, cls): |
|
1990 |
cls.add_output_stream_operator() |
|
1991 |
## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor] |
|
1992 |
cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')]) |
|
1993 |
## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor] |
|
1994 |
cls.add_constructor([]) |
|
1995 |
## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor] |
|
1996 |
cls.add_constructor([param('bool', 'value')]) |
|
1997 |
## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function] |
|
1998 |
cls.add_method('Copy', |
|
1999 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2000 |
[], |
|
2001 |
is_const=True, is_virtual=True) |
|
2002 |
## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
2003 |
cls.add_method('DeserializeFromString', |
|
2004 |
'bool', |
|
2005 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2006 |
is_virtual=True) |
|
2007 |
## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function] |
|
2008 |
cls.add_method('Get', |
|
2009 |
'bool', |
|
2010 |
[], |
|
2011 |
is_const=True) |
|
2012 |
## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
2013 |
cls.add_method('SerializeToString', |
|
2014 |
'std::string', |
|
2015 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2016 |
is_const=True, is_virtual=True) |
|
2017 |
## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function] |
|
2018 |
cls.add_method('Set', |
|
2019 |
'void', |
|
2020 |
[param('bool', 'value')]) |
|
2021 |
return |
|
2022 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2023 |
def register_Ns3CallbackChecker_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2024 |
## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2025 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2026 |
## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2027 |
cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2028 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2029 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2030 |
def register_Ns3CallbackImplBase_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2031 |
## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2032 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2033 |
## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2034 |
cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2035 |
## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2036 |
cls.add_method('IsEqual', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2037 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2038 |
[param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2039 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2040 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2041 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2042 |
def register_Ns3CallbackValue_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2043 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2044 |
cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2045 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2046 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2047 |
## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2048 |
cls.add_constructor([param('ns3::CallbackBase const &', 'base')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2049 |
## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2050 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2051 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2052 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2053 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2054 |
## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2055 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2056 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2057 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2058 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2059 |
## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2060 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2061 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2062 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2063 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2064 |
## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2065 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2066 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2067 |
[param('ns3::CallbackBase', 'base')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2068 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2069 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2070 |
def register_Ns3DataCalculator_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2071 |
## data-calculator.h (module 'stats'): ns3::DataCalculator::DataCalculator(ns3::DataCalculator const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2072 |
cls.add_constructor([param('ns3::DataCalculator const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2073 |
## data-calculator.h (module 'stats'): ns3::DataCalculator::DataCalculator() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2074 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2075 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::Disable() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2076 |
cls.add_method('Disable', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2077 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2078 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2079 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::Enable() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2080 |
cls.add_method('Enable', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2081 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2082 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2083 |
## data-calculator.h (module 'stats'): std::string ns3::DataCalculator::GetContext() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2084 |
cls.add_method('GetContext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2085 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2086 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2087 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2088 |
## data-calculator.h (module 'stats'): bool ns3::DataCalculator::GetEnabled() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2089 |
cls.add_method('GetEnabled', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2090 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2091 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2092 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2093 |
## data-calculator.h (module 'stats'): std::string ns3::DataCalculator::GetKey() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2094 |
cls.add_method('GetKey', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2095 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2096 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2097 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2098 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::Output(ns3::DataOutputCallback & callback) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2099 |
cls.add_method('Output', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2100 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2101 |
[param('ns3::DataOutputCallback &', 'callback')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2102 |
is_pure_virtual=True, is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2103 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::SetContext(std::string const context) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2104 |
cls.add_method('SetContext', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2105 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2106 |
[param('std::string const', 'context')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2107 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::SetKey(std::string const key) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2108 |
cls.add_method('SetKey', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2109 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2110 |
[param('std::string const', 'key')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2111 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::Start(ns3::Time const & startTime) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2112 |
cls.add_method('Start', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2113 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2114 |
[param('ns3::Time const &', 'startTime')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2115 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2116 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::Stop(ns3::Time const & stopTime) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2117 |
cls.add_method('Stop', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2118 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2119 |
[param('ns3::Time const &', 'stopTime')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2120 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2121 |
## data-calculator.h (module 'stats'): void ns3::DataCalculator::DoDispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2122 |
cls.add_method('DoDispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2123 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2124 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2125 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2126 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2127 |
|
10123 | 2128 |
def register_Ns3DataCollectionObject_methods(root_module, cls): |
2129 |
## data-collection-object.h (module 'stats'): ns3::DataCollectionObject::DataCollectionObject(ns3::DataCollectionObject const & arg0) [copy constructor] |
|
2130 |
cls.add_constructor([param('ns3::DataCollectionObject const &', 'arg0')]) |
|
2131 |
## data-collection-object.h (module 'stats'): ns3::DataCollectionObject::DataCollectionObject() [constructor] |
|
2132 |
cls.add_constructor([]) |
|
2133 |
## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::Disable() [member function] |
|
2134 |
cls.add_method('Disable', |
|
2135 |
'void', |
|
2136 |
[]) |
|
2137 |
## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::Enable() [member function] |
|
2138 |
cls.add_method('Enable', |
|
2139 |
'void', |
|
2140 |
[]) |
|
2141 |
## data-collection-object.h (module 'stats'): std::string ns3::DataCollectionObject::GetName() const [member function] |
|
2142 |
cls.add_method('GetName', |
|
2143 |
'std::string', |
|
2144 |
[], |
|
2145 |
is_const=True) |
|
2146 |
## data-collection-object.h (module 'stats'): static ns3::TypeId ns3::DataCollectionObject::GetTypeId() [member function] |
|
2147 |
cls.add_method('GetTypeId', |
|
2148 |
'ns3::TypeId', |
|
2149 |
[], |
|
2150 |
is_static=True) |
|
2151 |
## data-collection-object.h (module 'stats'): bool ns3::DataCollectionObject::IsEnabled() const [member function] |
|
2152 |
cls.add_method('IsEnabled', |
|
2153 |
'bool', |
|
2154 |
[], |
|
2155 |
is_const=True, is_virtual=True) |
|
2156 |
## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::SetName(std::string name) [member function] |
|
2157 |
cls.add_method('SetName', |
|
2158 |
'void', |
|
2159 |
[param('std::string', 'name')]) |
|
2160 |
return |
|
2161 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2162 |
def register_Ns3DataCollector_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2163 |
## data-collector.h (module 'stats'): ns3::DataCollector::DataCollector(ns3::DataCollector const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2164 |
cls.add_constructor([param('ns3::DataCollector const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2165 |
## data-collector.h (module 'stats'): ns3::DataCollector::DataCollector() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2166 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2167 |
## data-collector.h (module 'stats'): void ns3::DataCollector::AddDataCalculator(ns3::Ptr<ns3::DataCalculator> datac) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2168 |
cls.add_method('AddDataCalculator', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2169 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2170 |
[param('ns3::Ptr< ns3::DataCalculator >', 'datac')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2171 |
## data-collector.h (module 'stats'): void ns3::DataCollector::AddMetadata(std::string key, std::string value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2172 |
cls.add_method('AddMetadata', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2173 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2174 |
[param('std::string', 'key'), param('std::string', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2175 |
## data-collector.h (module 'stats'): void ns3::DataCollector::AddMetadata(std::string key, double value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2176 |
cls.add_method('AddMetadata', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2177 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2178 |
[param('std::string', 'key'), param('double', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2179 |
## data-collector.h (module 'stats'): void ns3::DataCollector::AddMetadata(std::string key, uint32_t value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2180 |
cls.add_method('AddMetadata', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2181 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2182 |
[param('std::string', 'key'), param('uint32_t', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2183 |
## data-collector.h (module 'stats'): std::_List_iterator<ns3::Ptr<ns3::DataCalculator> > ns3::DataCollector::DataCalculatorBegin() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2184 |
cls.add_method('DataCalculatorBegin', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2185 |
'std::_List_iterator< ns3::Ptr< ns3::DataCalculator > >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2186 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2187 |
## data-collector.h (module 'stats'): std::_List_iterator<ns3::Ptr<ns3::DataCalculator> > ns3::DataCollector::DataCalculatorEnd() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2188 |
cls.add_method('DataCalculatorEnd', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2189 |
'std::_List_iterator< ns3::Ptr< ns3::DataCalculator > >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2190 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2191 |
## data-collector.h (module 'stats'): void ns3::DataCollector::DescribeRun(std::string experiment, std::string strategy, std::string input, std::string runID, std::string description="") [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2192 |
cls.add_method('DescribeRun', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2193 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2194 |
[param('std::string', 'experiment'), param('std::string', 'strategy'), param('std::string', 'input'), param('std::string', 'runID'), param('std::string', 'description', default_value='""')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2195 |
## data-collector.h (module 'stats'): std::string ns3::DataCollector::GetDescription() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2196 |
cls.add_method('GetDescription', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2197 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2198 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2199 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2200 |
## data-collector.h (module 'stats'): std::string ns3::DataCollector::GetExperimentLabel() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2201 |
cls.add_method('GetExperimentLabel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2202 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2203 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2204 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2205 |
## data-collector.h (module 'stats'): std::string ns3::DataCollector::GetInputLabel() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2206 |
cls.add_method('GetInputLabel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2207 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2208 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2209 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2210 |
## data-collector.h (module 'stats'): std::string ns3::DataCollector::GetRunLabel() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2211 |
cls.add_method('GetRunLabel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2212 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2213 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2214 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2215 |
## data-collector.h (module 'stats'): std::string ns3::DataCollector::GetStrategyLabel() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2216 |
cls.add_method('GetStrategyLabel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2217 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2218 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2219 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2220 |
## data-collector.h (module 'stats'): std::_List_iterator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ns3::DataCollector::MetadataBegin() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2221 |
cls.add_method('MetadataBegin', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2222 |
'std::_List_iterator< std::pair< std::basic_string< char, std::char_traits< char >, std::allocator< char > >, std::basic_string< char, std::char_traits< char >, std::allocator< char > > > >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2223 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2224 |
## data-collector.h (module 'stats'): std::_List_iterator<std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > ns3::DataCollector::MetadataEnd() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2225 |
cls.add_method('MetadataEnd', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2226 |
'std::_List_iterator< std::pair< std::basic_string< char, std::char_traits< char >, std::allocator< char > >, std::basic_string< char, std::char_traits< char >, std::allocator< char > > > >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2227 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2228 |
## data-collector.h (module 'stats'): void ns3::DataCollector::DoDispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2229 |
cls.add_method('DoDispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2230 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2231 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2232 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2233 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2234 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2235 |
def register_Ns3DataOutputInterface_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2236 |
## data-output-interface.h (module 'stats'): ns3::DataOutputInterface::DataOutputInterface(ns3::DataOutputInterface const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2237 |
cls.add_constructor([param('ns3::DataOutputInterface const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2238 |
## data-output-interface.h (module 'stats'): ns3::DataOutputInterface::DataOutputInterface() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2239 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2240 |
## data-output-interface.h (module 'stats'): std::string ns3::DataOutputInterface::GetFilePrefix() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2241 |
cls.add_method('GetFilePrefix', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2242 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2243 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2244 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2245 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::Output(ns3::DataCollector & dc) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2246 |
cls.add_method('Output', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2247 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2248 |
[param('ns3::DataCollector &', 'dc')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2249 |
is_pure_virtual=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2250 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::SetFilePrefix(std::string const prefix) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2251 |
cls.add_method('SetFilePrefix', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2252 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2253 |
[param('std::string const', 'prefix')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2254 |
## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::DoDispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2255 |
cls.add_method('DoDispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2256 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2257 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2258 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2259 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2260 |
|
10123 | 2261 |
def register_Ns3DoubleValue_methods(root_module, cls): |
2262 |
## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor] |
|
2263 |
cls.add_constructor([]) |
|
2264 |
## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor] |
|
2265 |
cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')]) |
|
2266 |
## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor] |
|
2267 |
cls.add_constructor([param('double const &', 'value')]) |
|
2268 |
## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function] |
|
2269 |
cls.add_method('Copy', |
|
2270 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2271 |
[], |
|
2272 |
is_const=True, is_virtual=True) |
|
2273 |
## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
2274 |
cls.add_method('DeserializeFromString', |
|
2275 |
'bool', |
|
2276 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2277 |
is_virtual=True) |
|
2278 |
## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function] |
|
2279 |
cls.add_method('Get', |
|
2280 |
'double', |
|
2281 |
[], |
|
2282 |
is_const=True) |
|
2283 |
## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
2284 |
cls.add_method('SerializeToString', |
|
2285 |
'std::string', |
|
2286 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2287 |
is_const=True, is_virtual=True) |
|
2288 |
## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function] |
|
2289 |
cls.add_method('Set', |
|
2290 |
'void', |
|
2291 |
[param('double const &', 'value')]) |
|
2292 |
return |
|
2293 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2294 |
def register_Ns3EmptyAttributeValue_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2295 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2296 |
cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2297 |
## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2298 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2299 |
## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2300 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2301 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2302 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2303 |
is_const=True, visibility='private', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2304 |
## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2305 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2306 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2307 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2308 |
visibility='private', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2309 |
## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2310 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2311 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2312 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2313 |
is_const=True, visibility='private', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2314 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2315 |
|
10123 | 2316 |
def register_Ns3EnumChecker_methods(root_module, cls): |
2317 |
## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor] |
|
2318 |
cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')]) |
|
2319 |
## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor] |
|
2320 |
cls.add_constructor([]) |
|
2321 |
## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function] |
|
2322 |
cls.add_method('Add', |
|
2323 |
'void', |
|
2324 |
[param('int', 'v'), param('std::string', 'name')]) |
|
2325 |
## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function] |
|
2326 |
cls.add_method('AddDefault', |
|
2327 |
'void', |
|
2328 |
[param('int', 'v'), param('std::string', 'name')]) |
|
2329 |
## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function] |
|
2330 |
cls.add_method('Check', |
|
2331 |
'bool', |
|
2332 |
[param('ns3::AttributeValue const &', 'value')], |
|
2333 |
is_const=True, is_virtual=True) |
|
2334 |
## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function] |
|
2335 |
cls.add_method('Copy', |
|
2336 |
'bool', |
|
2337 |
[param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')], |
|
2338 |
is_const=True, is_virtual=True) |
|
2339 |
## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function] |
|
2340 |
cls.add_method('Create', |
|
2341 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2342 |
[], |
|
2343 |
is_const=True, is_virtual=True) |
|
2344 |
## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function] |
|
2345 |
cls.add_method('GetUnderlyingTypeInformation', |
|
2346 |
'std::string', |
|
2347 |
[], |
|
2348 |
is_const=True, is_virtual=True) |
|
2349 |
## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function] |
|
2350 |
cls.add_method('GetValueTypeName', |
|
2351 |
'std::string', |
|
2352 |
[], |
|
2353 |
is_const=True, is_virtual=True) |
|
2354 |
## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function] |
|
2355 |
cls.add_method('HasUnderlyingTypeInformation', |
|
2356 |
'bool', |
|
2357 |
[], |
|
2358 |
is_const=True, is_virtual=True) |
|
2359 |
return |
|
2360 |
||
2361 |
def register_Ns3EnumValue_methods(root_module, cls): |
|
2362 |
## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor] |
|
2363 |
cls.add_constructor([param('ns3::EnumValue const &', 'arg0')]) |
|
2364 |
## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor] |
|
2365 |
cls.add_constructor([]) |
|
2366 |
## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor] |
|
2367 |
cls.add_constructor([param('int', 'v')]) |
|
2368 |
## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function] |
|
2369 |
cls.add_method('Copy', |
|
2370 |
'ns3::Ptr< ns3::AttributeValue >', |
|
2371 |
[], |
|
2372 |
is_const=True, is_virtual=True) |
|
2373 |
## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
|
2374 |
cls.add_method('DeserializeFromString', |
|
2375 |
'bool', |
|
2376 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2377 |
is_virtual=True) |
|
2378 |
## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function] |
|
2379 |
cls.add_method('Get', |
|
2380 |
'int', |
|
2381 |
[], |
|
2382 |
is_const=True) |
|
2383 |
## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
|
2384 |
cls.add_method('SerializeToString', |
|
2385 |
'std::string', |
|
2386 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
|
2387 |
is_const=True, is_virtual=True) |
|
2388 |
## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function] |
|
2389 |
cls.add_method('Set', |
|
2390 |
'void', |
|
2391 |
[param('int', 'v')]) |
|
2392 |
return |
|
2393 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2394 |
def register_Ns3EventImpl_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2395 |
## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2396 |
cls.add_constructor([param('ns3::EventImpl const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2397 |
## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2398 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2399 |
## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2400 |
cls.add_method('Cancel', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2401 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2402 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2403 |
## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2404 |
cls.add_method('Invoke', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2405 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2406 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2407 |
## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2408 |
cls.add_method('IsCancelled', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2409 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2410 |
[]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2411 |
## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2412 |
cls.add_method('Notify', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2413 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2414 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2415 |
is_pure_virtual=True, visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2416 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2417 |
|
10123 | 2418 |
def register_Ns3FileAggregator_methods(root_module, cls): |
2419 |
## file-aggregator.h (module 'stats'): static ns3::TypeId ns3::FileAggregator::GetTypeId() [member function] |
|
2420 |
cls.add_method('GetTypeId', |
|
2421 |
'ns3::TypeId', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2422 |
[], |
10123 | 2423 |
is_static=True) |
2424 |
## file-aggregator.h (module 'stats'): ns3::FileAggregator::FileAggregator(std::string const & outputFileName, ns3::FileAggregator::FileType fileType=::ns3::FileAggregator::SPACE_SEPARATED) [constructor] |
|
2425 |
cls.add_constructor([param('std::string const &', 'outputFileName'), param('ns3::FileAggregator::FileType', 'fileType', default_value='::ns3::FileAggregator::SPACE_SEPARATED')]) |
|
2426 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::SetFileType(ns3::FileAggregator::FileType fileType) [member function] |
|
2427 |
cls.add_method('SetFileType', |
|
2428 |
'void', |
|
2429 |
[param('ns3::FileAggregator::FileType', 'fileType')]) |
|
2430 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::SetHeading(std::string const & heading) [member function] |
|
2431 |
cls.add_method('SetHeading', |
|
2432 |
'void', |
|
2433 |
[param('std::string const &', 'heading')]) |
|
2434 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set1dFormat(std::string const & format) [member function] |
|
2435 |
cls.add_method('Set1dFormat', |
|
2436 |
'void', |
|
2437 |
[param('std::string const &', 'format')]) |
|
2438 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set2dFormat(std::string const & format) [member function] |
|
2439 |
cls.add_method('Set2dFormat', |
|
2440 |
'void', |
|
2441 |
[param('std::string const &', 'format')]) |
|
2442 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set3dFormat(std::string const & format) [member function] |
|
2443 |
cls.add_method('Set3dFormat', |
|
2444 |
'void', |
|
2445 |
[param('std::string const &', 'format')]) |
|
2446 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set4dFormat(std::string const & format) [member function] |
|
2447 |
cls.add_method('Set4dFormat', |
|
2448 |
'void', |
|
2449 |
[param('std::string const &', 'format')]) |
|
2450 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set5dFormat(std::string const & format) [member function] |
|
2451 |
cls.add_method('Set5dFormat', |
|
2452 |
'void', |
|
2453 |
[param('std::string const &', 'format')]) |
|
2454 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set6dFormat(std::string const & format) [member function] |
|
2455 |
cls.add_method('Set6dFormat', |
|
2456 |
'void', |
|
2457 |
[param('std::string const &', 'format')]) |
|
2458 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set7dFormat(std::string const & format) [member function] |
|
2459 |
cls.add_method('Set7dFormat', |
|
2460 |
'void', |
|
2461 |
[param('std::string const &', 'format')]) |
|
2462 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set8dFormat(std::string const & format) [member function] |
|
2463 |
cls.add_method('Set8dFormat', |
|
2464 |
'void', |
|
2465 |
[param('std::string const &', 'format')]) |
|
2466 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set9dFormat(std::string const & format) [member function] |
|
2467 |
cls.add_method('Set9dFormat', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2468 |
'void', |
10123 | 2469 |
[param('std::string const &', 'format')]) |
2470 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Set10dFormat(std::string const & format) [member function] |
|
2471 |
cls.add_method('Set10dFormat', |
|
2472 |
'void', |
|
2473 |
[param('std::string const &', 'format')]) |
|
2474 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write1d(std::string context, double v1) [member function] |
|
2475 |
cls.add_method('Write1d', |
|
2476 |
'void', |
|
2477 |
[param('std::string', 'context'), param('double', 'v1')]) |
|
2478 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write2d(std::string context, double v1, double v2) [member function] |
|
2479 |
cls.add_method('Write2d', |
|
2480 |
'void', |
|
2481 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2')]) |
|
2482 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write3d(std::string context, double v1, double v2, double v3) [member function] |
|
2483 |
cls.add_method('Write3d', |
|
2484 |
'void', |
|
2485 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3')]) |
|
2486 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write4d(std::string context, double v1, double v2, double v3, double v4) [member function] |
|
2487 |
cls.add_method('Write4d', |
|
2488 |
'void', |
|
2489 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4')]) |
|
2490 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write5d(std::string context, double v1, double v2, double v3, double v4, double v5) [member function] |
|
2491 |
cls.add_method('Write5d', |
|
2492 |
'void', |
|
2493 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4'), param('double', 'v5')]) |
|
2494 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write6d(std::string context, double v1, double v2, double v3, double v4, double v5, double v6) [member function] |
|
2495 |
cls.add_method('Write6d', |
|
2496 |
'void', |
|
2497 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4'), param('double', 'v5'), param('double', 'v6')]) |
|
2498 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write7d(std::string context, double v1, double v2, double v3, double v4, double v5, double v6, double v7) [member function] |
|
2499 |
cls.add_method('Write7d', |
|
2500 |
'void', |
|
2501 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4'), param('double', 'v5'), param('double', 'v6'), param('double', 'v7')]) |
|
2502 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write8d(std::string context, double v1, double v2, double v3, double v4, double v5, double v6, double v7, double v8) [member function] |
|
2503 |
cls.add_method('Write8d', |
|
2504 |
'void', |
|
2505 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4'), param('double', 'v5'), param('double', 'v6'), param('double', 'v7'), param('double', 'v8')]) |
|
2506 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write9d(std::string context, double v1, double v2, double v3, double v4, double v5, double v6, double v7, double v8, double v9) [member function] |
|
2507 |
cls.add_method('Write9d', |
|
2508 |
'void', |
|
2509 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4'), param('double', 'v5'), param('double', 'v6'), param('double', 'v7'), param('double', 'v8'), param('double', 'v9')]) |
|
2510 |
## file-aggregator.h (module 'stats'): void ns3::FileAggregator::Write10d(std::string context, double v1, double v2, double v3, double v4, double v5, double v6, double v7, double v8, double v9, double v10) [member function] |
|
2511 |
cls.add_method('Write10d', |
|
2512 |
'void', |
|
2513 |
[param('std::string', 'context'), param('double', 'v1'), param('double', 'v2'), param('double', 'v3'), param('double', 'v4'), param('double', 'v5'), param('double', 'v6'), param('double', 'v7'), param('double', 'v8'), param('double', 'v9'), param('double', 'v10')]) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2514 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2515 |
|
10123 | 2516 |
def register_Ns3GnuplotAggregator_methods(root_module, cls): |
2517 |
## gnuplot-aggregator.h (module 'stats'): ns3::GnuplotAggregator::GnuplotAggregator(ns3::GnuplotAggregator const & arg0) [copy constructor] |
|
2518 |
cls.add_constructor([param('ns3::GnuplotAggregator const &', 'arg0')]) |
|
2519 |
## gnuplot-aggregator.h (module 'stats'): ns3::GnuplotAggregator::GnuplotAggregator(std::string const & outputFileNameWithoutExtension) [constructor] |
|
2520 |
cls.add_constructor([param('std::string const &', 'outputFileNameWithoutExtension')]) |
|
2521 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Add2dDataset(std::string const & dataset, std::string const & title) [member function] |
|
2522 |
cls.add_method('Add2dDataset', |
|
2523 |
'void', |
|
2524 |
[param('std::string const &', 'dataset'), param('std::string const &', 'title')]) |
|
2525 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::AppendExtra(std::string const & extra) [member function] |
|
2526 |
cls.add_method('AppendExtra', |
|
2527 |
'void', |
|
2528 |
[param('std::string const &', 'extra')]) |
|
2529 |
## gnuplot-aggregator.h (module 'stats'): static ns3::TypeId ns3::GnuplotAggregator::GetTypeId() [member function] |
|
2530 |
cls.add_method('GetTypeId', |
|
2531 |
'ns3::TypeId', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2532 |
[], |
10123 | 2533 |
is_static=True) |
2534 |
## gnuplot-aggregator.h (module 'stats'): static void ns3::GnuplotAggregator::Set2dDatasetDefaultErrorBars(ns3::Gnuplot2dDataset::ErrorBars errorBars) [member function] |
|
2535 |
cls.add_method('Set2dDatasetDefaultErrorBars', |
|
2536 |
'void', |
|
2537 |
[param('ns3::Gnuplot2dDataset::ErrorBars', 'errorBars')], |
|
2538 |
is_static=True) |
|
2539 |
## gnuplot-aggregator.h (module 'stats'): static void ns3::GnuplotAggregator::Set2dDatasetDefaultExtra(std::string const & extra) [member function] |
|
2540 |
cls.add_method('Set2dDatasetDefaultExtra', |
|
2541 |
'void', |
|
2542 |
[param('std::string const &', 'extra')], |
|
2543 |
is_static=True) |
|
2544 |
## gnuplot-aggregator.h (module 'stats'): static void ns3::GnuplotAggregator::Set2dDatasetDefaultStyle(ns3::Gnuplot2dDataset::Style style) [member function] |
|
2545 |
cls.add_method('Set2dDatasetDefaultStyle', |
|
2546 |
'void', |
|
2547 |
[param('ns3::Gnuplot2dDataset::Style', 'style')], |
|
2548 |
is_static=True) |
|
2549 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Set2dDatasetErrorBars(std::string const & dataset, ns3::Gnuplot2dDataset::ErrorBars errorBars) [member function] |
|
2550 |
cls.add_method('Set2dDatasetErrorBars', |
|
2551 |
'void', |
|
2552 |
[param('std::string const &', 'dataset'), param('ns3::Gnuplot2dDataset::ErrorBars', 'errorBars')]) |
|
2553 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Set2dDatasetExtra(std::string const & dataset, std::string const & extra) [member function] |
|
2554 |
cls.add_method('Set2dDatasetExtra', |
|
2555 |
'void', |
|
2556 |
[param('std::string const &', 'dataset'), param('std::string const &', 'extra')]) |
|
2557 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Set2dDatasetStyle(std::string const & dataset, ns3::Gnuplot2dDataset::Style style) [member function] |
|
2558 |
cls.add_method('Set2dDatasetStyle', |
|
2559 |
'void', |
|
2560 |
[param('std::string const &', 'dataset'), param('ns3::Gnuplot2dDataset::Style', 'style')]) |
|
2561 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::SetExtra(std::string const & extra) [member function] |
|
2562 |
cls.add_method('SetExtra', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2563 |
'void', |
10123 | 2564 |
[param('std::string const &', 'extra')]) |
2565 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::SetKeyLocation(ns3::GnuplotAggregator::KeyLocation keyLocation) [member function] |
|
2566 |
cls.add_method('SetKeyLocation', |
|
2567 |
'void', |
|
2568 |
[param('ns3::GnuplotAggregator::KeyLocation', 'keyLocation')]) |
|
2569 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::SetLegend(std::string const & xLegend, std::string const & yLegend) [member function] |
|
2570 |
cls.add_method('SetLegend', |
|
2571 |
'void', |
|
2572 |
[param('std::string const &', 'xLegend'), param('std::string const &', 'yLegend')]) |
|
2573 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::SetTerminal(std::string const & terminal) [member function] |
|
2574 |
cls.add_method('SetTerminal', |
|
2575 |
'void', |
|
2576 |
[param('std::string const &', 'terminal')]) |
|
2577 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::SetTitle(std::string const & title) [member function] |
|
2578 |
cls.add_method('SetTitle', |
|
2579 |
'void', |
|
2580 |
[param('std::string const &', 'title')]) |
|
2581 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Write2d(std::string context, double x, double y) [member function] |
|
2582 |
cls.add_method('Write2d', |
|
2583 |
'void', |
|
2584 |
[param('std::string', 'context'), param('double', 'x'), param('double', 'y')]) |
|
2585 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Write2dDatasetEmptyLine(std::string const & dataset) [member function] |
|
2586 |
cls.add_method('Write2dDatasetEmptyLine', |
|
2587 |
'void', |
|
2588 |
[param('std::string const &', 'dataset')]) |
|
2589 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Write2dWithXErrorDelta(std::string context, double x, double y, double errorDelta) [member function] |
|
2590 |
cls.add_method('Write2dWithXErrorDelta', |
|
2591 |
'void', |
|
2592 |
[param('std::string', 'context'), param('double', 'x'), param('double', 'y'), param('double', 'errorDelta')]) |
|
2593 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Write2dWithXYErrorDelta(std::string context, double x, double y, double xErrorDelta, double yErrorDelta) [member function] |
|
2594 |
cls.add_method('Write2dWithXYErrorDelta', |
|
2595 |
'void', |
|
2596 |
[param('std::string', 'context'), param('double', 'x'), param('double', 'y'), param('double', 'xErrorDelta'), param('double', 'yErrorDelta')]) |
|
2597 |
## gnuplot-aggregator.h (module 'stats'): void ns3::GnuplotAggregator::Write2dWithYErrorDelta(std::string context, double x, double y, double errorDelta) [member function] |
|
2598 |
cls.add_method('Write2dWithYErrorDelta', |
|
2599 |
'void', |
|
2600 |
[param('std::string', 'context'), param('double', 'x'), param('double', 'y'), param('double', 'errorDelta')]) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2601 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2602 |
|
10123 | 2603 |
def register_Ns3IntegerValue_methods(root_module, cls): |
2604 |
## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2605 |
cls.add_constructor([]) |
10123 | 2606 |
## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor] |
2607 |
cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')]) |
|
2608 |
## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor] |
|
2609 |
cls.add_constructor([param('int64_t const &', 'value')]) |
|
2610 |
## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2611 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2612 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2613 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2614 |
is_const=True, is_virtual=True) |
10123 | 2615 |
## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2616 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2617 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2618 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2619 |
is_virtual=True) |
10123 | 2620 |
## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2621 |
cls.add_method('Get', |
10123 | 2622 |
'int64_t', |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2623 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2624 |
is_const=True) |
10123 | 2625 |
## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2626 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2627 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2628 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2629 |
is_const=True, is_virtual=True) |
10123 | 2630 |
## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2631 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2632 |
'void', |
10123 | 2633 |
[param('int64_t const &', 'value')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2634 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2635 |
|
9901 | 2636 |
def register_Ns3MinMaxAvgTotalCalculator__Double_methods(root_module, cls): |
2637 |
## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double>::MinMaxAvgTotalCalculator(ns3::MinMaxAvgTotalCalculator<double> const & arg0) [copy constructor] |
|
2638 |
cls.add_constructor([param('ns3::MinMaxAvgTotalCalculator< double > const &', 'arg0')]) |
|
2639 |
## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double>::MinMaxAvgTotalCalculator() [constructor] |
|
2640 |
cls.add_constructor([]) |
|
2641 |
## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Output(ns3::DataOutputCallback & callback) const [member function] |
|
2642 |
cls.add_method('Output', |
|
2643 |
'void', |
|
2644 |
[param('ns3::DataOutputCallback &', 'callback')], |
|
2645 |
is_const=True, is_virtual=True) |
|
2646 |
## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Reset() [member function] |
|
2647 |
cls.add_method('Reset', |
|
2648 |
'void', |
|
2649 |
[]) |
|
2650 |
## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Update(double const i) [member function] |
|
2651 |
cls.add_method('Update', |
|
2652 |
'void', |
|
2653 |
[param('double const', 'i')]) |
|
2654 |
## basic-data-calculators.h (module 'stats'): long int ns3::MinMaxAvgTotalCalculator<double>::getCount() const [member function] |
|
2655 |
cls.add_method('getCount', |
|
2656 |
'long int', |
|
2657 |
[], |
|
2658 |
is_const=True, is_virtual=True) |
|
2659 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getMax() const [member function] |
|
2660 |
cls.add_method('getMax', |
|
2661 |
'double', |
|
2662 |
[], |
|
2663 |
is_const=True, is_virtual=True) |
|
2664 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getMean() const [member function] |
|
2665 |
cls.add_method('getMean', |
|
2666 |
'double', |
|
2667 |
[], |
|
2668 |
is_const=True, is_virtual=True) |
|
2669 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getMin() const [member function] |
|
2670 |
cls.add_method('getMin', |
|
2671 |
'double', |
|
2672 |
[], |
|
2673 |
is_const=True, is_virtual=True) |
|
2674 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getSqrSum() const [member function] |
|
2675 |
cls.add_method('getSqrSum', |
|
2676 |
'double', |
|
2677 |
[], |
|
2678 |
is_const=True, is_virtual=True) |
|
2679 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getStddev() const [member function] |
|
2680 |
cls.add_method('getStddev', |
|
2681 |
'double', |
|
2682 |
[], |
|
2683 |
is_const=True, is_virtual=True) |
|
2684 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getSum() const [member function] |
|
2685 |
cls.add_method('getSum', |
|
2686 |
'double', |
|
2687 |
[], |
|
2688 |
is_const=True, is_virtual=True) |
|
2689 |
## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getVariance() const [member function] |
|
2690 |
cls.add_method('getVariance', |
|
2691 |
'double', |
|
2692 |
[], |
|
2693 |
is_const=True, is_virtual=True) |
|
2694 |
## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::DoDispose() [member function] |
|
2695 |
cls.add_method('DoDispose', |
|
2696 |
'void', |
|
2697 |
[], |
|
2698 |
visibility='protected', is_virtual=True) |
|
2699 |
return |
|
2700 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2701 |
def register_Ns3ObjectFactoryChecker_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2702 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2703 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2704 |
## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2705 |
cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2706 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2707 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2708 |
def register_Ns3ObjectFactoryValue_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2709 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2710 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2711 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2712 |
cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2713 |
## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2714 |
cls.add_constructor([param('ns3::ObjectFactory const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2715 |
## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2716 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2717 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2718 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2719 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2720 |
## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2721 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2722 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2723 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2724 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2725 |
## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2726 |
cls.add_method('Get', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2727 |
'ns3::ObjectFactory', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2728 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2729 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2730 |
## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2731 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2732 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2733 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2734 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2735 |
## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2736 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2737 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2738 |
[param('ns3::ObjectFactory const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2739 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2740 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2741 |
def register_Ns3OmnetDataOutput_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2742 |
## omnet-data-output.h (module 'stats'): ns3::OmnetDataOutput::OmnetDataOutput(ns3::OmnetDataOutput const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2743 |
cls.add_constructor([param('ns3::OmnetDataOutput const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2744 |
## omnet-data-output.h (module 'stats'): ns3::OmnetDataOutput::OmnetDataOutput() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2745 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2746 |
## omnet-data-output.h (module 'stats'): void ns3::OmnetDataOutput::Output(ns3::DataCollector & dc) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2747 |
cls.add_method('Output', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2748 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2749 |
[param('ns3::DataCollector &', 'dc')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2750 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2751 |
## omnet-data-output.h (module 'stats'): void ns3::OmnetDataOutput::DoDispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2752 |
cls.add_method('DoDispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2753 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2754 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2755 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2756 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2757 |
|
10123 | 2758 |
def register_Ns3Probe_methods(root_module, cls): |
2759 |
## probe.h (module 'stats'): ns3::Probe::Probe(ns3::Probe const & arg0) [copy constructor] |
|
2760 |
cls.add_constructor([param('ns3::Probe const &', 'arg0')]) |
|
2761 |
## probe.h (module 'stats'): ns3::Probe::Probe() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2762 |
cls.add_constructor([]) |
10123 | 2763 |
## probe.h (module 'stats'): bool ns3::Probe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function] |
2764 |
cls.add_method('ConnectByObject', |
|
2765 |
'bool', |
|
2766 |
[param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], |
|
2767 |
is_pure_virtual=True, is_virtual=True) |
|
2768 |
## probe.h (module 'stats'): void ns3::Probe::ConnectByPath(std::string path) [member function] |
|
2769 |
cls.add_method('ConnectByPath', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2770 |
'void', |
10123 | 2771 |
[param('std::string', 'path')], |
2772 |
is_pure_virtual=True, is_virtual=True) |
|
2773 |
## probe.h (module 'stats'): static ns3::TypeId ns3::Probe::GetTypeId() [member function] |
|
2774 |
cls.add_method('GetTypeId', |
|
2775 |
'ns3::TypeId', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2776 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2777 |
is_static=True) |
10123 | 2778 |
## probe.h (module 'stats'): bool ns3::Probe::IsEnabled() const [member function] |
2779 |
cls.add_method('IsEnabled', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2780 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2781 |
[], |
10123 | 2782 |
is_const=True, is_virtual=True) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2783 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2784 |
|
10628
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2785 |
def register_Ns3SqliteDataOutput_methods(root_module, cls): |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2786 |
## sqlite-data-output.h (module 'stats'): ns3::SqliteDataOutput::SqliteDataOutput(ns3::SqliteDataOutput const & arg0) [copy constructor] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2787 |
cls.add_constructor([param('ns3::SqliteDataOutput const &', 'arg0')]) |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2788 |
## sqlite-data-output.h (module 'stats'): ns3::SqliteDataOutput::SqliteDataOutput() [constructor] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2789 |
cls.add_constructor([]) |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2790 |
## sqlite-data-output.h (module 'stats'): void ns3::SqliteDataOutput::Output(ns3::DataCollector & dc) [member function] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2791 |
cls.add_method('Output', |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2792 |
'void', |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2793 |
[param('ns3::DataCollector &', 'dc')], |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2794 |
is_virtual=True) |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2795 |
## sqlite-data-output.h (module 'stats'): void ns3::SqliteDataOutput::DoDispose() [member function] |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2796 |
cls.add_method('DoDispose', |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2797 |
'void', |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2798 |
[], |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2799 |
visibility='protected', is_virtual=True) |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2800 |
return |
8e7d67510b46
[Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
10566
diff
changeset
|
2801 |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2802 |
def register_Ns3TimeMinMaxAvgTotalCalculator_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2803 |
## time-data-calculators.h (module 'stats'): ns3::TimeMinMaxAvgTotalCalculator::TimeMinMaxAvgTotalCalculator(ns3::TimeMinMaxAvgTotalCalculator const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2804 |
cls.add_constructor([param('ns3::TimeMinMaxAvgTotalCalculator const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2805 |
## time-data-calculators.h (module 'stats'): ns3::TimeMinMaxAvgTotalCalculator::TimeMinMaxAvgTotalCalculator() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2806 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2807 |
## time-data-calculators.h (module 'stats'): void ns3::TimeMinMaxAvgTotalCalculator::Output(ns3::DataOutputCallback & callback) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2808 |
cls.add_method('Output', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2809 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2810 |
[param('ns3::DataOutputCallback &', 'callback')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2811 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2812 |
## time-data-calculators.h (module 'stats'): void ns3::TimeMinMaxAvgTotalCalculator::Update(ns3::Time const i) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2813 |
cls.add_method('Update', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2814 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2815 |
[param('ns3::Time const', 'i')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2816 |
## time-data-calculators.h (module 'stats'): void ns3::TimeMinMaxAvgTotalCalculator::DoDispose() [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2817 |
cls.add_method('DoDispose', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2818 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2819 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2820 |
visibility='protected', is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2821 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2822 |
|
10123 | 2823 |
def register_Ns3TimeSeriesAdaptor_methods(root_module, cls): |
2824 |
## time-series-adaptor.h (module 'stats'): ns3::TimeSeriesAdaptor::TimeSeriesAdaptor(ns3::TimeSeriesAdaptor const & arg0) [copy constructor] |
|
2825 |
cls.add_constructor([param('ns3::TimeSeriesAdaptor const &', 'arg0')]) |
|
2826 |
## time-series-adaptor.h (module 'stats'): ns3::TimeSeriesAdaptor::TimeSeriesAdaptor() [constructor] |
|
2827 |
cls.add_constructor([]) |
|
2828 |
## time-series-adaptor.h (module 'stats'): static ns3::TypeId ns3::TimeSeriesAdaptor::GetTypeId() [member function] |
|
2829 |
cls.add_method('GetTypeId', |
|
2830 |
'ns3::TypeId', |
|
2831 |
[], |
|
2832 |
is_static=True) |
|
2833 |
## time-series-adaptor.h (module 'stats'): void ns3::TimeSeriesAdaptor::TraceSinkBoolean(bool oldData, bool newData) [member function] |
|
2834 |
cls.add_method('TraceSinkBoolean', |
|
2835 |
'void', |
|
2836 |
[param('bool', 'oldData'), param('bool', 'newData')]) |
|
2837 |
## time-series-adaptor.h (module 'stats'): void ns3::TimeSeriesAdaptor::TraceSinkDouble(double oldData, double newData) [member function] |
|
2838 |
cls.add_method('TraceSinkDouble', |
|
2839 |
'void', |
|
2840 |
[param('double', 'oldData'), param('double', 'newData')]) |
|
2841 |
## time-series-adaptor.h (module 'stats'): void ns3::TimeSeriesAdaptor::TraceSinkUinteger16(uint16_t oldData, uint16_t newData) [member function] |
|
2842 |
cls.add_method('TraceSinkUinteger16', |
|
2843 |
'void', |
|
2844 |
[param('uint16_t', 'oldData'), param('uint16_t', 'newData')]) |
|
2845 |
## time-series-adaptor.h (module 'stats'): void ns3::TimeSeriesAdaptor::TraceSinkUinteger32(uint32_t oldData, uint32_t newData) [member function] |
|
2846 |
cls.add_method('TraceSinkUinteger32', |
|
2847 |
'void', |
|
2848 |
[param('uint32_t', 'oldData'), param('uint32_t', 'newData')]) |
|
2849 |
## time-series-adaptor.h (module 'stats'): void ns3::TimeSeriesAdaptor::TraceSinkUinteger8(uint8_t oldData, uint8_t newData) [member function] |
|
2850 |
cls.add_method('TraceSinkUinteger8', |
|
2851 |
'void', |
|
2852 |
[param('uint8_t', 'oldData'), param('uint8_t', 'newData')]) |
|
2853 |
return |
|
2854 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2855 |
def register_Ns3TimeValue_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2856 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2857 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2858 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2859 |
cls.add_constructor([param('ns3::TimeValue const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2860 |
## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2861 |
cls.add_constructor([param('ns3::Time const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2862 |
## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2863 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2864 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2865 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2866 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2867 |
## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2868 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2869 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2870 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2871 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2872 |
## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2873 |
cls.add_method('Get', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2874 |
'ns3::Time', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2875 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2876 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2877 |
## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2878 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2879 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2880 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2881 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2882 |
## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2883 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2884 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2885 |
[param('ns3::Time const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2886 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2887 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2888 |
def register_Ns3TypeIdChecker_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2889 |
## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2890 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2891 |
## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2892 |
cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2893 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2894 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2895 |
def register_Ns3TypeIdValue_methods(root_module, cls): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2896 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2897 |
cls.add_constructor([]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2898 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2899 |
cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2900 |
## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2901 |
cls.add_constructor([param('ns3::TypeId const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2902 |
## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2903 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2904 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2905 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2906 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2907 |
## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2908 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2909 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2910 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2911 |
is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2912 |
## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2913 |
cls.add_method('Get', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2914 |
'ns3::TypeId', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2915 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2916 |
is_const=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2917 |
## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2918 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2919 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2920 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2921 |
is_const=True, is_virtual=True) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2922 |
## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2923 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2924 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2925 |
[param('ns3::TypeId const &', 'value')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2926 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2927 |
|
10123 | 2928 |
def register_Ns3Uinteger16Probe_methods(root_module, cls): |
2929 |
## uinteger-16-probe.h (module 'stats'): ns3::Uinteger16Probe::Uinteger16Probe(ns3::Uinteger16Probe const & arg0) [copy constructor] |
|
2930 |
cls.add_constructor([param('ns3::Uinteger16Probe const &', 'arg0')]) |
|
2931 |
## uinteger-16-probe.h (module 'stats'): ns3::Uinteger16Probe::Uinteger16Probe() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2932 |
cls.add_constructor([]) |
10123 | 2933 |
## uinteger-16-probe.h (module 'stats'): bool ns3::Uinteger16Probe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function] |
2934 |
cls.add_method('ConnectByObject', |
|
2935 |
'bool', |
|
2936 |
[param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], |
|
2937 |
is_virtual=True) |
|
2938 |
## uinteger-16-probe.h (module 'stats'): void ns3::Uinteger16Probe::ConnectByPath(std::string path) [member function] |
|
2939 |
cls.add_method('ConnectByPath', |
|
2940 |
'void', |
|
2941 |
[param('std::string', 'path')], |
|
2942 |
is_virtual=True) |
|
2943 |
## uinteger-16-probe.h (module 'stats'): static ns3::TypeId ns3::Uinteger16Probe::GetTypeId() [member function] |
|
2944 |
cls.add_method('GetTypeId', |
|
2945 |
'ns3::TypeId', |
|
2946 |
[], |
|
2947 |
is_static=True) |
|
2948 |
## uinteger-16-probe.h (module 'stats'): uint16_t ns3::Uinteger16Probe::GetValue() const [member function] |
|
2949 |
cls.add_method('GetValue', |
|
2950 |
'uint16_t', |
|
2951 |
[], |
|
2952 |
is_const=True) |
|
2953 |
## uinteger-16-probe.h (module 'stats'): void ns3::Uinteger16Probe::SetValue(uint16_t value) [member function] |
|
2954 |
cls.add_method('SetValue', |
|
2955 |
'void', |
|
2956 |
[param('uint16_t', 'value')]) |
|
2957 |
## uinteger-16-probe.h (module 'stats'): static void ns3::Uinteger16Probe::SetValueByPath(std::string path, uint16_t value) [member function] |
|
2958 |
cls.add_method('SetValueByPath', |
|
2959 |
'void', |
|
2960 |
[param('std::string', 'path'), param('uint16_t', 'value')], |
|
2961 |
is_static=True) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2962 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2963 |
|
10123 | 2964 |
def register_Ns3Uinteger32Probe_methods(root_module, cls): |
2965 |
## uinteger-32-probe.h (module 'stats'): ns3::Uinteger32Probe::Uinteger32Probe(ns3::Uinteger32Probe const & arg0) [copy constructor] |
|
2966 |
cls.add_constructor([param('ns3::Uinteger32Probe const &', 'arg0')]) |
|
2967 |
## uinteger-32-probe.h (module 'stats'): ns3::Uinteger32Probe::Uinteger32Probe() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
2968 |
cls.add_constructor([]) |
10123 | 2969 |
## uinteger-32-probe.h (module 'stats'): bool ns3::Uinteger32Probe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function] |
2970 |
cls.add_method('ConnectByObject', |
|
2971 |
'bool', |
|
2972 |
[param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], |
|
2973 |
is_virtual=True) |
|
2974 |
## uinteger-32-probe.h (module 'stats'): void ns3::Uinteger32Probe::ConnectByPath(std::string path) [member function] |
|
2975 |
cls.add_method('ConnectByPath', |
|
2976 |
'void', |
|
2977 |
[param('std::string', 'path')], |
|
2978 |
is_virtual=True) |
|
2979 |
## uinteger-32-probe.h (module 'stats'): static ns3::TypeId ns3::Uinteger32Probe::GetTypeId() [member function] |
|
2980 |
cls.add_method('GetTypeId', |
|
2981 |
'ns3::TypeId', |
|
2982 |
[], |
|
2983 |
is_static=True) |
|
2984 |
## uinteger-32-probe.h (module 'stats'): uint32_t ns3::Uinteger32Probe::GetValue() const [member function] |
|
2985 |
cls.add_method('GetValue', |
|
2986 |
'uint32_t', |
|
2987 |
[], |
|
2988 |
is_const=True) |
|
2989 |
## uinteger-32-probe.h (module 'stats'): void ns3::Uinteger32Probe::SetValue(uint32_t value) [member function] |
|
2990 |
cls.add_method('SetValue', |
|
2991 |
'void', |
|
2992 |
[param('uint32_t', 'value')]) |
|
2993 |
## uinteger-32-probe.h (module 'stats'): static void ns3::Uinteger32Probe::SetValueByPath(std::string path, uint32_t value) [member function] |
|
2994 |
cls.add_method('SetValueByPath', |
|
2995 |
'void', |
|
2996 |
[param('std::string', 'path'), param('uint32_t', 'value')], |
|
2997 |
is_static=True) |
|
2998 |
return |
|
2999 |
||
3000 |
def register_Ns3Uinteger8Probe_methods(root_module, cls): |
|
3001 |
## uinteger-8-probe.h (module 'stats'): ns3::Uinteger8Probe::Uinteger8Probe(ns3::Uinteger8Probe const & arg0) [copy constructor] |
|
3002 |
cls.add_constructor([param('ns3::Uinteger8Probe const &', 'arg0')]) |
|
3003 |
## uinteger-8-probe.h (module 'stats'): ns3::Uinteger8Probe::Uinteger8Probe() [constructor] |
|
3004 |
cls.add_constructor([]) |
|
3005 |
## uinteger-8-probe.h (module 'stats'): bool ns3::Uinteger8Probe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function] |
|
3006 |
cls.add_method('ConnectByObject', |
|
3007 |
'bool', |
|
3008 |
[param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], |
|
3009 |
is_virtual=True) |
|
3010 |
## uinteger-8-probe.h (module 'stats'): void ns3::Uinteger8Probe::ConnectByPath(std::string path) [member function] |
|
3011 |
cls.add_method('ConnectByPath', |
|
3012 |
'void', |
|
3013 |
[param('std::string', 'path')], |
|
3014 |
is_virtual=True) |
|
3015 |
## uinteger-8-probe.h (module 'stats'): static ns3::TypeId ns3::Uinteger8Probe::GetTypeId() [member function] |
|
3016 |
cls.add_method('GetTypeId', |
|
3017 |
'ns3::TypeId', |
|
3018 |
[], |
|
3019 |
is_static=True) |
|
3020 |
## uinteger-8-probe.h (module 'stats'): uint8_t ns3::Uinteger8Probe::GetValue() const [member function] |
|
3021 |
cls.add_method('GetValue', |
|
3022 |
'uint8_t', |
|
3023 |
[], |
|
3024 |
is_const=True) |
|
3025 |
## uinteger-8-probe.h (module 'stats'): void ns3::Uinteger8Probe::SetValue(uint8_t value) [member function] |
|
3026 |
cls.add_method('SetValue', |
|
3027 |
'void', |
|
3028 |
[param('uint8_t', 'value')]) |
|
3029 |
## uinteger-8-probe.h (module 'stats'): static void ns3::Uinteger8Probe::SetValueByPath(std::string path, uint8_t value) [member function] |
|
3030 |
cls.add_method('SetValueByPath', |
|
3031 |
'void', |
|
3032 |
[param('std::string', 'path'), param('uint8_t', 'value')], |
|
3033 |
is_static=True) |
|
3034 |
return |
|
3035 |
||
3036 |
def register_Ns3UintegerValue_methods(root_module, cls): |
|
3037 |
## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor] |
|
3038 |
cls.add_constructor([]) |
|
3039 |
## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor] |
|
3040 |
cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')]) |
|
3041 |
## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor] |
|
3042 |
cls.add_constructor([param('uint64_t const &', 'value')]) |
|
3043 |
## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3044 |
cls.add_method('Copy', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3045 |
'ns3::Ptr< ns3::AttributeValue >', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3046 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3047 |
is_const=True, is_virtual=True) |
10123 | 3048 |
## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3049 |
cls.add_method('DeserializeFromString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3050 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3051 |
[param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3052 |
is_virtual=True) |
10123 | 3053 |
## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3054 |
cls.add_method('Get', |
10123 | 3055 |
'uint64_t', |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3056 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3057 |
is_const=True) |
10123 | 3058 |
## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3059 |
cls.add_method('SerializeToString', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3060 |
'std::string', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3061 |
[param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3062 |
is_const=True, is_virtual=True) |
10123 | 3063 |
## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function] |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3064 |
cls.add_method('Set', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3065 |
'void', |
10123 | 3066 |
[param('uint64_t const &', 'value')]) |
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3067 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3068 |
|
10123 | 3069 |
def register_Ns3BooleanProbe_methods(root_module, cls): |
3070 |
## boolean-probe.h (module 'stats'): ns3::BooleanProbe::BooleanProbe(ns3::BooleanProbe const & arg0) [copy constructor] |
|
3071 |
cls.add_constructor([param('ns3::BooleanProbe const &', 'arg0')]) |
|
3072 |
## boolean-probe.h (module 'stats'): ns3::BooleanProbe::BooleanProbe() [constructor] |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3073 |
cls.add_constructor([]) |
10123 | 3074 |
## boolean-probe.h (module 'stats'): bool ns3::BooleanProbe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function] |
3075 |
cls.add_method('ConnectByObject', |
|
3076 |
'bool', |
|
3077 |
[param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], |
|
3078 |
is_virtual=True) |
|
3079 |
## boolean-probe.h (module 'stats'): void ns3::BooleanProbe::ConnectByPath(std::string path) [member function] |
|
3080 |
cls.add_method('ConnectByPath', |
|
3081 |
'void', |
|
3082 |
[param('std::string', 'path')], |
|
3083 |
is_virtual=True) |
|
3084 |
## boolean-probe.h (module 'stats'): static ns3::TypeId ns3::BooleanProbe::GetTypeId() [member function] |
|
3085 |
cls.add_method('GetTypeId', |
|
3086 |
'ns3::TypeId', |
|
3087 |
[], |
|
3088 |
is_static=True) |
|
3089 |
## boolean-probe.h (module 'stats'): bool ns3::BooleanProbe::GetValue() const [member function] |
|
3090 |
cls.add_method('GetValue', |
|
3091 |
'bool', |
|
3092 |
[], |
|
3093 |
is_const=True) |
|
3094 |
## boolean-probe.h (module 'stats'): void ns3::BooleanProbe::SetValue(bool value) [member function] |
|
3095 |
cls.add_method('SetValue', |
|
3096 |
'void', |
|
3097 |
[param('bool', 'value')]) |
|
3098 |
## boolean-probe.h (module 'stats'): static void ns3::BooleanProbe::SetValueByPath(std::string path, bool value) [member function] |
|
3099 |
cls.add_method('SetValueByPath', |
|
3100 |
'void', |
|
3101 |
[param('std::string', 'path'), param('bool', 'value')], |
|
3102 |
is_static=True) |
|
3103 |
return |
|
3104 |
||
3105 |
def register_Ns3DoubleProbe_methods(root_module, cls): |
|
3106 |
## double-probe.h (module 'stats'): ns3::DoubleProbe::DoubleProbe(ns3::DoubleProbe const & arg0) [copy constructor] |
|
3107 |
cls.add_constructor([param('ns3::DoubleProbe const &', 'arg0')]) |
|
3108 |
## double-probe.h (module 'stats'): ns3::DoubleProbe::DoubleProbe() [constructor] |
|
3109 |
cls.add_constructor([]) |
|
3110 |
## double-probe.h (module 'stats'): bool ns3::DoubleProbe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function] |
|
3111 |
cls.add_method('ConnectByObject', |
|
3112 |
'bool', |
|
3113 |
[param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], |
|
3114 |
is_virtual=True) |
|
3115 |
## double-probe.h (module 'stats'): void ns3::DoubleProbe::ConnectByPath(std::string path) [member function] |
|
3116 |
cls.add_method('ConnectByPath', |
|
3117 |
'void', |
|
3118 |
[param('std::string', 'path')], |
|
3119 |
is_virtual=True) |
|
3120 |
## double-probe.h (module 'stats'): static ns3::TypeId ns3::DoubleProbe::GetTypeId() [member function] |
|
3121 |
cls.add_method('GetTypeId', |
|
3122 |
'ns3::TypeId', |
|
3123 |
[], |
|
3124 |
is_static=True) |
|
3125 |
## double-probe.h (module 'stats'): double ns3::DoubleProbe::GetValue() const [member function] |
|
3126 |
cls.add_method('GetValue', |
|
3127 |
'double', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3128 |
[], |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3129 |
is_const=True) |
10123 | 3130 |
## double-probe.h (module 'stats'): void ns3::DoubleProbe::SetValue(double value) [member function] |
3131 |
cls.add_method('SetValue', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3132 |
'void', |
10123 | 3133 |
[param('double', 'value')]) |
3134 |
## double-probe.h (module 'stats'): static void ns3::DoubleProbe::SetValueByPath(std::string path, double value) [member function] |
|
3135 |
cls.add_method('SetValueByPath', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3136 |
'void', |
10123 | 3137 |
[param('std::string', 'path'), param('double', 'value')], |
3138 |
is_static=True) |
|
3139 |
return |
|
3140 |
||
3141 |
def register_Ns3HashImplementation_methods(root_module, cls): |
|
3142 |
## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation(ns3::Hash::Implementation const & arg0) [copy constructor] |
|
3143 |
cls.add_constructor([param('ns3::Hash::Implementation const &', 'arg0')]) |
|
3144 |
## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation() [constructor] |
|
3145 |
cls.add_constructor([]) |
|
3146 |
## hash-function.h (module 'core'): uint32_t ns3::Hash::Implementation::GetHash32(char const * buffer, size_t const size) [member function] |
|
3147 |
cls.add_method('GetHash32', |
|
3148 |
'uint32_t', |
|
3149 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3150 |
is_pure_virtual=True, is_virtual=True) |
|
3151 |
## hash-function.h (module 'core'): uint64_t ns3::Hash::Implementation::GetHash64(char const * buffer, size_t const size) [member function] |
|
3152 |
cls.add_method('GetHash64', |
|
3153 |
'uint64_t', |
|
3154 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3155 |
is_virtual=True) |
|
3156 |
## hash-function.h (module 'core'): void ns3::Hash::Implementation::clear() [member function] |
|
3157 |
cls.add_method('clear', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3158 |
'void', |
10123 | 3159 |
[], |
3160 |
is_pure_virtual=True, is_virtual=True) |
|
3161 |
return |
|
3162 |
||
3163 |
def register_Ns3HashFunctionFnv1a_methods(root_module, cls): |
|
3164 |
## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a(ns3::Hash::Function::Fnv1a const & arg0) [copy constructor] |
|
3165 |
cls.add_constructor([param('ns3::Hash::Function::Fnv1a const &', 'arg0')]) |
|
3166 |
## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a() [constructor] |
|
3167 |
cls.add_constructor([]) |
|
3168 |
## hash-fnv.h (module 'core'): uint32_t ns3::Hash::Function::Fnv1a::GetHash32(char const * buffer, size_t const size) [member function] |
|
3169 |
cls.add_method('GetHash32', |
|
3170 |
'uint32_t', |
|
3171 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3172 |
is_virtual=True) |
|
3173 |
## hash-fnv.h (module 'core'): uint64_t ns3::Hash::Function::Fnv1a::GetHash64(char const * buffer, size_t const size) [member function] |
|
3174 |
cls.add_method('GetHash64', |
|
3175 |
'uint64_t', |
|
3176 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3177 |
is_virtual=True) |
|
3178 |
## hash-fnv.h (module 'core'): void ns3::Hash::Function::Fnv1a::clear() [member function] |
|
3179 |
cls.add_method('clear', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3180 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3181 |
[], |
10123 | 3182 |
is_virtual=True) |
3183 |
return |
|
3184 |
||
3185 |
def register_Ns3HashFunctionHash32_methods(root_module, cls): |
|
3186 |
## hash-function.h (module 'core'): ns3::Hash::Function::Hash32::Hash32(ns3::Hash::Function::Hash32 const & arg0) [copy constructor] |
|
3187 |
cls.add_constructor([param('ns3::Hash::Function::Hash32 const &', 'arg0')]) |
|
3188 |
## hash-function.h (module 'core'): ns3::Hash::Function::Hash32::Hash32(ns3::Hash::Hash32Function_ptr hp) [constructor] |
|
3189 |
cls.add_constructor([param('ns3::Hash::Hash32Function_ptr', 'hp')]) |
|
3190 |
## hash-function.h (module 'core'): uint32_t ns3::Hash::Function::Hash32::GetHash32(char const * buffer, size_t const size) [member function] |
|
3191 |
cls.add_method('GetHash32', |
|
3192 |
'uint32_t', |
|
3193 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3194 |
is_virtual=True) |
|
3195 |
## hash-function.h (module 'core'): void ns3::Hash::Function::Hash32::clear() [member function] |
|
3196 |
cls.add_method('clear', |
|
3197 |
'void', |
|
3198 |
[], |
|
3199 |
is_virtual=True) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3200 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3201 |
|
10123 | 3202 |
def register_Ns3HashFunctionHash64_methods(root_module, cls): |
3203 |
## hash-function.h (module 'core'): ns3::Hash::Function::Hash64::Hash64(ns3::Hash::Function::Hash64 const & arg0) [copy constructor] |
|
3204 |
cls.add_constructor([param('ns3::Hash::Function::Hash64 const &', 'arg0')]) |
|
3205 |
## hash-function.h (module 'core'): ns3::Hash::Function::Hash64::Hash64(ns3::Hash::Hash64Function_ptr hp) [constructor] |
|
3206 |
cls.add_constructor([param('ns3::Hash::Hash64Function_ptr', 'hp')]) |
|
3207 |
## hash-function.h (module 'core'): uint32_t ns3::Hash::Function::Hash64::GetHash32(char const * buffer, size_t const size) [member function] |
|
3208 |
cls.add_method('GetHash32', |
|
3209 |
'uint32_t', |
|
3210 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3211 |
is_virtual=True) |
|
3212 |
## hash-function.h (module 'core'): uint64_t ns3::Hash::Function::Hash64::GetHash64(char const * buffer, size_t const size) [member function] |
|
3213 |
cls.add_method('GetHash64', |
|
3214 |
'uint64_t', |
|
3215 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3216 |
is_virtual=True) |
|
3217 |
## hash-function.h (module 'core'): void ns3::Hash::Function::Hash64::clear() [member function] |
|
3218 |
cls.add_method('clear', |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3219 |
'void', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3220 |
[], |
10123 | 3221 |
is_virtual=True) |
3222 |
return |
|
3223 |
||
3224 |
def register_Ns3HashFunctionMurmur3_methods(root_module, cls): |
|
3225 |
## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3(ns3::Hash::Function::Murmur3 const & arg0) [copy constructor] |
|
3226 |
cls.add_constructor([param('ns3::Hash::Function::Murmur3 const &', 'arg0')]) |
|
3227 |
## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3() [constructor] |
|
3228 |
cls.add_constructor([]) |
|
3229 |
## hash-murmur3.h (module 'core'): uint32_t ns3::Hash::Function::Murmur3::GetHash32(char const * buffer, size_t const size) [member function] |
|
3230 |
cls.add_method('GetHash32', |
|
3231 |
'uint32_t', |
|
3232 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3233 |
is_virtual=True) |
|
3234 |
## hash-murmur3.h (module 'core'): uint64_t ns3::Hash::Function::Murmur3::GetHash64(char const * buffer, size_t const size) [member function] |
|
3235 |
cls.add_method('GetHash64', |
|
3236 |
'uint64_t', |
|
3237 |
[param('char const *', 'buffer'), param('size_t const', 'size')], |
|
3238 |
is_virtual=True) |
|
3239 |
## hash-murmur3.h (module 'core'): void ns3::Hash::Function::Murmur3::clear() [member function] |
|
3240 |
cls.add_method('clear', |
|
3241 |
'void', |
|
3242 |
[], |
|
3243 |
is_virtual=True) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3244 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3245 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3246 |
def register_functions(root_module): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3247 |
module = root_module |
10123 | 3248 |
## get-wildcard-matches.h (module 'stats'): extern std::string ns3::GetWildcardMatches(std::string const & configPath, std::string const & matchedPath, std::string const & wildcardSeparator=" ") [free function] |
3249 |
module.add_function('GetWildcardMatches', |
|
3250 |
'std::string', |
|
3251 |
[param('std::string const &', 'configPath'), param('std::string const &', 'matchedPath'), param('std::string const &', 'wildcardSeparator', default_value='" "')]) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3252 |
## data-calculator.h (module 'stats'): bool ns3::isNaN(double x) [free function] |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3253 |
module.add_function('isNaN', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3254 |
'bool', |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3255 |
[param('double', 'x')]) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3256 |
register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module) |
10123 | 3257 |
register_functions_ns3_Hash(module.get_submodule('Hash'), root_module) |
3258 |
register_functions_ns3_internal(module.get_submodule('internal'), root_module) |
|
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3259 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3260 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3261 |
def register_functions_ns3_FatalImpl(module, root_module): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3262 |
return |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3263 |
|
10123 | 3264 |
def register_functions_ns3_Hash(module, root_module): |
3265 |
register_functions_ns3_Hash_Function(module.get_submodule('Function'), root_module) |
|
3266 |
return |
|
3267 |
||
3268 |
def register_functions_ns3_Hash_Function(module, root_module): |
|
3269 |
return |
|
3270 |
||
3271 |
def register_functions_ns3_internal(module, root_module): |
|
3272 |
return |
|
3273 |
||
6932
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3274 |
def main(): |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3275 |
out = FileCodeSink(sys.stdout) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3276 |
root_module = module_init() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3277 |
register_types(root_module) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3278 |
register_methods(root_module) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3279 |
register_functions(root_module) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3280 |
root_module.generate(out) |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3281 |
|
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3282 |
if __name__ == '__main__': |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3283 |
main() |
3b497f4f6ad9
Add more modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff
changeset
|
3284 |