DEADSOFTWARE

did the same thing for binary heap
[d2df-sdl.git] / src / shared / CONFIG.pas
index 3dfd736f4a6e1f492090993a7e4a11c96d63053c..7ecc51e70fb180944e2dd2c36b48ce917bb3f1a3 100644 (file)
@@ -24,6 +24,9 @@ CONFIG.PAS 
 
 interface
 
+uses
+  mempool;
+
 type
   TParam = record
    Param: ShortString;
@@ -31,7 +34,7 @@ type
    Section: Word;
   end;
 
-  TConfig = class(TObject)
+  TConfig = class(TPoolObject)
    private
     FParams: array of TParam;
     FSections: array of ShortString;
@@ -58,7 +61,7 @@ type
 implementation
 
 uses
-  SysUtils, BinEditor;
+  SysUtils, utils;
 
 { TConfig }