2023-11-02 10:53:16 +08:00
|
|
|
|
|
|
|
public class ExpFctParamDecl {
|
|
|
|
|
|
|
|
public VariableType mVarType;
|
|
|
|
public String mVarName;
|
2023-11-02 12:40:50 +08:00
|
|
|
public boolean mIsInput;
|
2023-11-02 22:02:39 +08:00
|
|
|
public String mVarDesc;
|
2023-11-02 10:53:16 +08:00
|
|
|
|
2023-11-02 12:40:50 +08:00
|
|
|
public ExpFctParamDecl() {
|
|
|
|
mVarType = new VariableType();
|
|
|
|
mVarName = "";
|
2023-11-02 22:02:39 +08:00
|
|
|
mVarDesc = "";
|
2023-11-02 12:40:50 +08:00
|
|
|
mIsInput = true;
|
2023-11-02 10:53:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|