Example #1
0
 public QProperty(QAccessLimit accessLimit, QCompileType compileType, QTypeDefine type, string name, string getReturnCode, string comment = null)
 {
     AccessLimit   = accessLimit;
     Type          = QTypeUtil.GetCodeType(type);
     CompileType   = compileType;
     Name          = name;
     GetReturnCode = getReturnCode;
     Comment       = comment;
 }
Example #2
0
 public Property(QAccessLimit accessLimit, QCompileType compileType, QTypeDefine type, string name, string getReturnCode, string comment = null)
 {
     this.AccessLimit   = accessLimit;
     this.Type          = TypeUtil.GetCodeType(type);
     this.CompileType   = compileType;
     this.Name          = name;
     this.GetReturnCode = getReturnCode;
     this.Comment       = comment;
 }
Example #3
0
 public QVariable(QAccessLimit accessLimit, QCompileType compileType, QTypeDefine type, string name, string value, string comment = null)
 {
     AccessLimit = accessLimit;
     CompileType = compileType;
     Name        = name;
     Value       = value;
     Type        = QTypeUtil.GetCodeType(type);
     CompileType = compileType;
     Comment     = comment;
 }
Example #4
0
 public QVariable(QAccessLimit accessLimit, QCompileType compileType, QTypeDefine type, string name, string value, string comment = null)
 {
     this.AccessLimit = accessLimit;
     this.CompileType = compileType;
     this.Name        = name;
     this.Value       = value;
     this.Type        = TypeUtil.GetCodeType(type);
     this.CompileType = compileType;
     this.Comment     = comment;
 }