From 049502aa73c7d43627b9856219b18bf0da98a255 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Sat, 20 Oct 2018 14:57:16 +0200 Subject: Add basic Python files --- src/Lang/Python/PythonParser.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/Lang/Python/PythonParser.ts (limited to 'src/Lang/Python/PythonParser.ts') diff --git a/src/Lang/Python/PythonParser.ts b/src/Lang/Python/PythonParser.ts new file mode 100644 index 0000000..2d26ed8 --- /dev/null +++ b/src/Lang/Python/PythonParser.ts @@ -0,0 +1,17 @@ +import { TextEditor } from "vscode"; +import ICodeParser from "../../Common/ICodeParser"; +import { IDocGen } from "../../Common/IDocGen"; +import { Config } from "../../Config"; + +export default class CppParser implements ICodeParser { + + protected readonly cfg: Config; + + constructor(cfg: Config) { + this.cfg = cfg; + } + + public Parse(activeEditor: TextEditor): IDocGen { + throw new Error("Method not implemented."); + } +} -- cgit v1.2.3