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, 0 insertions, 16 deletions
diff --git a/src/CodeParser/CParser/CppParser.ts b/src/CodeParser/CParser/CppParser.ts
deleted file mode 100644
index b3279c6..0000000
--- a/src/CodeParser/CParser/CppParser.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-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
-}