unit LibSimpleParser; interface uses SysUtils; type TSimpleParser = class private FBuf : String; FBoundary : String; FBoundarySize : Integer; FRequestCount : Integer; FErasedCount : Integer; FRecentWord : String; function GetRest: String; public doTrim: Boolean; constructor Create(const Buf : String; const Boundary: String; Trim : Boolean = True); function Get(const Ord:Integer) : String; overlo..