summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/CppParser.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/CodeParser/CParser/CppParser.ts')
-rw-r--r--src/CodeParser/CParser/CppParser.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/CodeParser/CParser/CppParser.ts b/src/CodeParser/CParser/CppParser.ts
new file mode 100644
index 0000000..b3279c6
--- /dev/null
+++ b/src/CodeParser/CParser/CppParser.ts
@@ -0,0 +1,16 @@
+import { Position, TextDocumentContentChangeEvent, TextEditor, TextLine } from "vscode";
+import Generator from "../../DocGen/CGen";
+import { IDocGen } from "../../DocGen/DocGen";
+import CParser from "./CParser";
+
+/**
+ *
+ * Parses C++ code for methods and signatures
+ *
+ * @export
+ * @class CppParser
+ * @implements {ICodeParser}
+ */
+export default class CppParser extends CParser {
+ // For now C++ is the same as C
+}