Курсовая работа: Моделирование систем
procedure GetOrder;
procedure DelElement(Element : TElement);
property SysTime : TCustTime read FSysTime;
property SysPeriod: TCustTime read FSysPeriod write FSysPeriod;
property StepPeriod : TCustTime read FStepPeriod write FStepPeriod;
property Counts[Index : integer]:integer read GetCounts;
property BornParcelCount : integer index 0 read GetCounts;
property StoreParcelCount : integer index 1 read GetCounts;
property WorkParcelCount : integer index 2 read GetCounts;
property PassedParcelCount : integer index 3 read GetCounts;
property RefusedParcelCount : integer index 4 read GetCounts;
property ParcelCount:integer read GetParcelCount;
property StepCount : integer read FStepCount write FStepCount;
property ParcelsClass : TParcelsClass read FParcelsClass write FParcelsClass;
published
property Diagram : TPaintBox read FDiagram write FDiagram;
property ElementCount : integer read GetElementCount;
property Elements[Index : integer] : TElement read GetElement;
end;
implementation
uses MainFrm;
constructor TQSheme.Create;
begin
FElements := TList.Create;
FParcelsClass := TParcel;
FParcels := TList.Create;
FEventQueue := TList.Create;
end;
destructor TQSheme.Destroy;