lazarus/tools/gir2pascal/girparser.pas

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.