summaryrefslogtreecommitdiffstats
path: root/src/Lang/Python/PythonParser.ts
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2018-10-20 14:57:16 +0200
committerChristoph Schlosser <christoph@linux.com>2018-10-20 14:57:16 +0200
commit049502aa73c7d43627b9856219b18bf0da98a255 (patch)
tree87148438d5580b6580964f77eacf2a29cf14debe /src/Lang/Python/PythonParser.ts
parentc0df4b403b3d760f9a9bd72d0da4967858bc4c53 (diff)
downloaddoxdocgen-049502aa73c7d43627b9856219b18bf0da98a255.tar.gz
Add basic Python files
Diffstat (limited to 'src/Lang/Python/PythonParser.ts')
-rw-r--r--src/Lang/Python/PythonParser.ts17
1 files changed, 17 insertions, 0 deletions
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.");
+ }
+}