mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-28 19:34:09 +02:00
18 lines
177 B
ObjectPascal
18 lines
177 B
ObjectPascal
unit fpDbgSymTable;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
DbgIntfBaseTypes,
|
|
fgl, Classes;
|
|
|
|
type
|
|
TfpSymbolList= specialize TFPGMap<String, TDBGPtr>;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|