summaryrefslogtreecommitdiff
path: root/codegen/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/__init__.py')
-rw-r--r--codegen/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/codegen/__init__.py b/codegen/__init__.py
new file mode 100644
index 0000000..ff3635f
--- /dev/null
+++ b/codegen/__init__.py
@@ -0,0 +1,10 @@
+"""
+ codegen module
+Contains utilities to parse yaml definitions and generate C headers
+from them
+"""
+__license__ = 'GPL-3.0-only'
+
+from .types import Variable, Function, Struct
+from .header import Header
+from .yaml import read as parse_yaml