Example #1
0
 public CFMethod(string nm, CbClass owner, CbType rt) : base(owner)
 {
     Name = nm;  ResultType = rt;
 }
Example #2
0
 public CbConstructor(CbClass owner)
 {
     Name    = owner.Name;
     ArgType = new List <CbType>();
     Owner   = owner;
 }
Example #3
0
 public CbField(string nm, CbType t, CbClass owner)
 {
     Name = nm;  Type = t;  Owner = owner;
 }
Example #4
0
 public CFMethod( string nm, CbClass owner, CbType rt )
     : base(owner)
 {
     Name = nm;  ResultType = rt;
 }
Example #5
0
 public CbField( string nm, CbType t, CbClass owner )
 {
     Name = nm;  Type = t;  Owner = owner;
 }
Example #6
0
 public CbConstructor( CbClass owner )
 {
     Name = owner.Name;
     ArgType = new List<CbType>();
     Owner = owner;
 }