blob: 2d26ed8f2aa193871470ada32ec9ceef99919e98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.");
}
}
|