summaryrefslogtreecommitdiff
path: root/codegen/__init__.py
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2023-10-22 18:42:58 +0300
committeraqua <aqua@iserlohn-fortress.net>2023-10-22 18:42:58 +0300
commitfbe4a5eeab2107dfe03fc097bc1f9627b222adbd (patch)
tree11dd6b18e324721b1b3f23ed3617ac6922774ea7 /codegen/__init__.py
downloadcodegen-master.tar.xz
Initial commitHEADmaster
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