home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kompon / d56 / VKDBF.ZIP / VKDBFCDX.pas < prev    next >
Pascal/Delphi Source File  |  2002-07-31  |  399b  |  29 lines

  1. unit VKDBFCDX;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   db, VKDBFParser, DBCommon, VKDBFIndex;
  8.  
  9. type
  10.  
  11.   {TVKCDXOrder}
  12.   TVKCDXOrder = class(TVKDBFOrder)
  13.   end;
  14.  
  15.   {TVKCDXBag}
  16.   TVKCDXBag = class(TVKDBFIndexBag)
  17.   end;
  18.  
  19.   {TVKCDXIndex}
  20.   TVKCDXIndex = class(TIndex)
  21.   end;
  22.  
  23. implementation
  24.  
  25. uses
  26.    VKDBFDataSet;
  27.  
  28. end.
  29.