ab11b885 [keel] Add missing new line to log message 36fc25fb [studio] Fix closing tab with unsaved changes 4803cca3 [nostalgia/player] Cleanup 6bd74611 [nostalgia] Update release notes c3f9cf9a [studio] Fix New Project opening project, disable New if no project open git-subtree-dir: deps/nostalgia git-subtree-split: ab11b885e680ee8f0be7ee06f2253ab7ddb726be
31 lines
806 B
Python
Executable File
31 lines
806 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
#
|
|
# Copyright 2016 - 2025 gary@drinkingtea.net
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
import argparse
|
|
import sys
|
|
|
|
|
|
def main() -> int:
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--file', help='path to file')
|
|
parser.add_argument('--out-cpp', help='path to output cpp file')
|
|
parser.add_argument('--out-hpp', help='path to output hpp file')
|
|
parser.add_argument('--namespace', help='path to output hpp file')
|
|
args = parser.parse_args()
|
|
return 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
err = main()
|
|
sys.exit(err)
|
|
except KeyboardInterrupt:
|
|
sys.exit(1)
|