Newer
Older
ubixfs-2 / FSABSTRA.PAS
@flameshadow flameshadow on 10 Jun 2005 420 bytes UbixFS
unit FSABSTRACT;

interface

uses Device;

type
  vfs_abstract = object
   private
    prev : ^vfs_abstract;
    next : ^vfs_abstract;
    dev  : PDevice;
   public
    constructor init;
    destructor done; virtual;
  end; {vfs_abstract}

implementation

constructor vfs_abstract.init;
begin
  next := NIL;
  prev := NIL;
  dev  := NIL;
end;

destructor vfs_abstract.done;
begin
end;

end.