File: girparser.pas

package info (click to toggle)
gir2pas 0.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 732 kB
  • sloc: pascal: 7,033; makefile: 59
file content (18 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
unit girParser;

{$mode objfpc}{$H+}
{$INTERFACES CORBA}
interface

uses
  Classes, SysUtils, Dom;

type
  IgirParser = interface
    procedure ParseNode(ANode: TDomNode);
  end;

implementation

end.