示例#1
0
 public static void /*ConceptVar*/ op_Assign(ConceptVar a, ConceptVar b)
 {
     a.typedef = b.typedef;
     a.tvalue  = b.tvalue;
     a.empty   = b.empty;
     return;
 }
示例#2
0
 public static BooleanVar op_Empty(ConceptVar a)
 {
     return(new BooleanVar(a.tvalue == null));
 }
示例#3
0
 public static void /*ConceptVar*/ op_Assign(ConceptVar a, StringVar b)
 {
     a.tvalue = null;
     a.empty  = true;
     return;
 }
示例#4
0
 public ConceptVar(ConceptVar s)
 {
     name   = s.name;
     tvalue = s.tvalue;
     empty  = s.empty;
 }