summaryrefslogtreecommitdiffstats
path: root/src/Lang/Cpp/CppArgument.ts
blob: 9b781c8c215bb84510d5882c195be14c22527c46 (plain)
1
2
3
4
5
6
import { CppParseTree } from "./CppParseTree";

export class CppArgument {
    public name: string = null;
    public type: CppParseTree =  new CppParseTree();
}