Class TLeakItem
Unit
Declaration
type TLeakItem = class(TObject)
Description
Class that represents a single point in code with the possible memory leak.
Hierarchy
- TObject
- TLeakItem
Overview
Methods
![]() |
class function New(const AStatus, ASize: string): TLeakItem; |
Properties
![]() |
property Status: string read FStatus write FStatus; |
![]() |
property Size: string read FSize write FSize; |
![]() |
property Source: string read FSource write FSource; |
Description
Methods
![]() |
class function New(const AStatus, ASize: string): TLeakItem; |
|
Returns an instance of the class with the status and memory leak size filled. | |
Properties
![]() |
property Status: string read FStatus write FStatus; |
|
Item status. Currently it can only be Leak. | |
![]() |
property Size: string read FSize write FSize; |
|
Memory leak size in bytes | |
![]() |
property Source: string read FSource write FSource; |
|
Data about the source code where the leak originated, as well as the method and code line number within the file. | |
Generated by PasDoc 0.16.0.
