mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
19 lines
202 B
ObjectPascal
19 lines
202 B
ObjectPascal
unit girParser;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$INTERFACES CORBA}
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Dom;
|
|
|
|
type
|
|
IgirParser = interface
|
|
procedure ParseNode(ANode: TDomNode);
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|