write binding code
This commit is contained in:
16
CodeGen/BMapBindings/ExpFctDecl.java
Normal file
16
CodeGen/BMapBindings/ExpFctDecl.java
Normal file
@ -0,0 +1,16 @@
|
||||
import java.util.Vector;
|
||||
|
||||
public class ExpFctDecl {
|
||||
|
||||
public String mFctName;
|
||||
public VariableType mFctRetType;
|
||||
public Vector<ExpFctParamDecl> mFctParams;
|
||||
|
||||
public ExpFctDecl(String fct_name, VariableType ret_type) {
|
||||
mFctName = fct_name;
|
||||
mFctRetType = ret_type;
|
||||
mFctParams = new Vector<ExpFctParamDecl>();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user