TNTFSEntryList

From Ultibo.org
Jump to: navigation, search

Return to Unit NTFSClass


Description


To be documented

Class definitions



TNTFSEntryList = class(TObject)

constructor Create;  
destructor Destroy; override;  
private
FEntryCount:Integer;  
FFirstEntry:TNTFSDiskEntry;  
FLastEntry:TNTFSDiskEntry;  
 
function Link(AEntry:TNTFSDiskEntry):Boolean;  
function Unlink(AEntry:TNTFSDiskEntry):Boolean;  
public
property EntryCount:Integer read FEntryCount;  
property FirstEntry:TNTFSDiskEntry read FFirstEntry;  
property LastEntry:TNTFSDiskEntry read FLastEntry;  
 
function Add(AEntry:TNTFSDiskEntry):Boolean;  
function Remove(AEntry:TNTFSDiskEntry):Boolean;  
 
procedure ClearList; virtual;  


Function declarations



constructor TNTFSEntryList.Create;
Description: To be documented
Note None documented


destructor TNTFSEntryList.Destroy;
Description: To be documented
Note None documented


function TNTFSEntryList.Link(AEntry:TNTFSDiskEntry):Boolean;
Description: Link Entry to PrevEntry,NextEntry Siblings
Note None documented


function TNTFSEntryList.Unlink(AEntry:TNTFSDiskEntry):Boolean;
Description: Unlink Entry from PrevEntry,NextEntry Siblings
Note None documented


function TNTFSEntryList.Add(AEntry:TNTFSDiskEntry):Boolean;
Description: Add Entry to List and Link with Siblings
Note None documented


function TNTFSEntryList.Remove(AEntry:TNTFSDiskEntry):Boolean;
Description: Unlink Entry from Siblings and Remove from List
Note None documented


procedure TNTFSEntryList.ClearList;
Description: To be documented
Note None documented


Return to Unit Reference