| 1234567891011121314151617 | unit ProjGatherCalcData;interfacetype  Tpg_Calc = class  private    FQuantity: Double;    FTotalPrice: Double;  public    property Quantity: Double read FQuantity write FQuantity;    property TotalPrice: Double read FTotalPrice write FTotalPrice;  end;implementationend.
 |