Пример #1
0
 // constructor
 public tokenType(SteeringVehicle parentObject, BruteForceProximityDatabase pd)
 {
     // store pointer to our associated database and the object this
     // token represents, and store this token on the database's vector
     bfpd          = pd;
     tParentObject = parentObject;
     bfpd.group.Add(this);
 }
Пример #2
0
 // constructor
 public tokenType(SteeringVehicle parentObject, BruteForceProximityDatabase pd)
 {
     // store pointer to our associated database and the object this
     // token represents, and store this token on the database's vector
     bfpd = pd;
     tParentObject = parentObject;
     bfpd.group.Add(this);
 }
Пример #3
0
 public tokenType(SteeringVehicle parentObject, BruteForceProximityDatabase pd)
 {
     this.bfpd          = pd;
     this.tParentObject = parentObject;
     this.bfpd.group.Add(this);
 }