diff options
Diffstat (limited to 'modules/tools/python/c_generate_iface.py')
-rwxr-xr-x | modules/tools/python/c_generate_iface.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/tools/python/c_generate_iface.py b/modules/tools/python/c_generate_iface.py index e5a0d9b..d234482 100755 --- a/modules/tools/python/c_generate_iface.py +++ b/modules/tools/python/c_generate_iface.py @@ -1 +1,24 @@ #!/usr/bin/env python3 + +import argparse; +import jinja2; + + +def parse_args(): + parser = argparse.ArgumentParser( + description = "Generates bindings for the Interface schema" + ); + parser.add_argument( + '-t', '--template', + required=True, + help = "Path to the template directory" + ); + + return parser.parse_args(); + +def main(): + return 0; + +if __name__ == "__main__": + rc = main(); + exit(rc); |