Beispiel #1
0
 public IdlFunctionParameter(string type, string name, IdlAttribute attribute, string defaultValue)
 {
     this.Type         = type;
     this.Name         = name;
     this.Attribute    = attribute;
     this.DefaultValue = defaultValue;
 }
Beispiel #2
0
 public IdlFunction(string name, string returnType, IdlAttribute attribute, IList <IdlFunctionParameter> parameters)
 {
     this.Name       = name;
     this.ReturnType = returnType;
     this.Attribute  = attribute;
     this.Parameters = parameters;
 }
Beispiel #3
0
 public IdlCallback(string name, string returnType, IdlAttribute attribute, IList <IdlFunctionParameter> parameters)
     : base(name, returnType, attribute, parameters)
 {
 }