add basic python writer for bmap binding

This commit is contained in:
2023-11-02 22:02:39 +08:00
parent bcd58af132
commit 52c2d3f7e0
9 changed files with 260 additions and 6 deletions

View File

@ -4,10 +4,12 @@ public class ExpFctParamDecl {
public VariableType mVarType;
public String mVarName;
public boolean mIsInput;
public String mVarDesc;
public ExpFctParamDecl() {
mVarType = new VariableType();
mVarName = "";
mVarDesc = "";
mIsInput = true;
}