blob: c13d194cb9f4078acdb57485a4ddd77abf652297 (
plain)
1
2
3
4
5
6
|
import { Position, Range, Selection, TextEditor, TextLine, WorkspaceEdit } from "vscode";
import CGen from "./CGen";
export default class CppGen extends CGen {
// For now C++ is the same as C
}
|