unit kInvts;

interface
uses  Classes,kconcomp,stdctrls;

  type TInvt = record
    inv : TcInverter;
    gb  : TGroupBox;
    name : string;
    ini  : string;
   end;

  type PTInvt = ^TInvt;

  const maxInverters = 8;
//  const InvCnt       = maxInverters;
  type  TInvts       = record
    cnt   : integer;
    invts : array[0..maxInverters-1] of TInvt;
  end;

implementation

end.
