diff options
Diffstat (limited to 'src/CodeParser/CppParser.ts')
| -rw-r--r-- | src/CodeParser/CppParser.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/CodeParser/CppParser.ts b/src/CodeParser/CppParser.ts deleted file mode 100644 index 2d5985b..0000000 --- a/src/CodeParser/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 -} |