Remove stale trace-ir test files
[babeltrace.git] / bindings / python / babeltrace / babeltrace / __init__.py.in
1 # backward compatibility with old `babeltrace` module: import common members
2 from .common import \
3 CTFStringEncoding, \
4 ByteOrder, \
5 CTFTypeId, \
6 CTFScope
7
8
9 # backward compatibility with old `babeltrace` module: import reader API members
10 from .reader import \
11 TraceCollection, \
12 TraceHandle, \
13 Event, \
14 FieldError, \
15 EventDeclaration, \
16 FieldDeclaration, \
17 IntegerFieldDeclaration, \
18 EnumerationFieldDeclaration, \
19 ArrayFieldDeclaration, \
20 SequenceFieldDeclaration, \
21 FloatFieldDeclaration, \
22 StructureFieldDeclaration, \
23 StringFieldDeclaration, \
24 VariantFieldDeclaration
25
26
27 # backward compatibility with old `babeltrace` module: import CTF writer API
28 # module as `CTFWriter`, since `CTFWriter` used to be a class in the
29 # `babeltrace` module
30 import babeltrace.writer as CTFWriter
31
32
33 __version__ = '@PACKAGE_VERSION@'
This page took 0.03127 seconds and 4 git commands to generate.