Exemplo n.º 1
0
 public IdlFunctionParameter(string type, string name, IdlAttribute attribute, string defaultValue)
 {
     this.Type         = type;
     this.Name         = name;
     this.Attribute    = attribute;
     this.DefaultValue = defaultValue;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public IdlCallback(string name, string returnType, IdlAttribute attribute, IList <IdlFunctionParameter> parameters)
     : base(name, returnType, attribute, parameters)
 {
 }