Add dynamic array tracing tests
[deliverable/barectf.git] / barectf / __init__.py
index 0e2cfada50a6a472f36224f9126323591e0af0f0..b47d71c779a71a3c341c4531fb25c6f841b286c1 100644 (file)
@@ -25,7 +25,8 @@ import barectf.config_parse_common as barectf_config_parse_common
 import barectf.version as barectf_version
 import barectf.config as barectf_config
 import barectf.config_file as barectf_config_file
-import barectf.gen as barectf_gen
+import barectf.codegen as barectf_codegen
+import barectf.typing as barectf_typing
 
 
 # version API
@@ -35,6 +36,14 @@ __patch_version__ = barectf_version.__patch_version__
 __version__ = barectf_version.__version__
 
 
+# common typing API
+Index = barectf_typing.Index
+Count = barectf_typing.Count
+Id = barectf_typing.Id
+Alignment = barectf_typing.Alignment
+VersionNumber = barectf_typing.VersionNumber
+
+
 # configuration API
 _ArrayFieldType = barectf_config._ArrayFieldType
 _BitArrayFieldType = barectf_config._BitArrayFieldType
@@ -52,10 +61,12 @@ ConfigurationCodeGenerationOptions = barectf_config.ConfigurationCodeGenerationO
 ConfigurationOptions = barectf_config.ConfigurationOptions
 DEFAULT_FIELD_TYPE = barectf_config.DEFAULT_FIELD_TYPE
 DisplayBase = barectf_config.DisplayBase
+DynamicArrayFieldType = barectf_config.DynamicArrayFieldType
 EnumerationFieldTypeMapping = barectf_config.EnumerationFieldTypeMapping
 EnumerationFieldTypeMappingRange = barectf_config.EnumerationFieldTypeMappingRange
 EnumerationFieldTypeMappings = barectf_config.EnumerationFieldTypeMappings
 EventType = barectf_config.EventType
+LogLevel = barectf_config.LogLevel
 RealFieldType = barectf_config.RealFieldType
 SignedEnumerationFieldType = barectf_config.SignedEnumerationFieldType
 SignedIntegerFieldType = barectf_config.SignedIntegerFieldType
@@ -83,7 +94,7 @@ effective_configuration_file = barectf_config_file.effective_configuration_file
 
 
 # code generation API
-CodeGenerator = barectf_gen.CodeGenerator
+CodeGenerator = barectf_codegen.CodeGenerator
 
 
 # remove local names
@@ -91,4 +102,5 @@ del barectf_config_parse_common
 del barectf_version
 del barectf_config
 del barectf_config_file
-del barectf_gen
+del barectf_codegen
+del barectf_typing
This page took 0.031827 seconds and 4 git commands to generate.