diff options
Diffstat (limited to 'src/Lang/Cpp/CppArgument.ts')
| -rw-r--r-- | src/Lang/Cpp/CppArgument.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Lang/Cpp/CppArgument.ts b/src/Lang/Cpp/CppArgument.ts new file mode 100644 index 0000000..9b781c8 --- /dev/null +++ b/src/Lang/Cpp/CppArgument.ts @@ -0,0 +1,6 @@ +import { CppParseTree } from "./CppParseTree"; + +export class CppArgument { + public name: string = null; + public type: CppParseTree = new CppParseTree(); +} |