123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- {
- $Id$
- This file is part of the Free Component Library (FCL)
- Copyright (c) 1998 by the Free Pascal development team
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- {****************************************************************************}
- {* TParser *}
- {****************************************************************************}
- Procedure TParser.ReadBuffer;
- begin
- end;
- Procedure TParser.SkipBlanks;
- begin
- end;
- constructor TParser.Create(Stream: TStream);
- begin
- end;
- destructor TParser.Destroy;
- begin
- end;
- Procedure TParser.CheckToken(T: Char);
- begin
- end;
- Procedure TParser.CheckTokenSymbol(const S: string);
- begin
- end;
- Procedure TParser.Error(const Ident: string);
- begin
- end;
- {!!!!!!
- Procedure TParser.ErrorFmt(const Ident: string; const Args: array of const);
- begin
- end;
- !!!!!!}
- Procedure TParser.ErrorStr(const Message: string);
- begin
- end;
- Procedure TParser.HexToBinary(Stream: TStream);
- begin
- end;
- Function TParser.NextToken: Char;
- begin
- end;
- Function TParser.SourcePos: Longint;
- begin
- end;
- Function TParser.TokenComponentIdent: String;
- begin
- end;
- Function TParser.TokenFloat: Extended;
- begin
- end;
- Function TParser.TokenInt: Longint;
- begin
- end;
- Function TParser.TokenString: string;
- begin
- end;
- Function TParser.TokenSymbolIs(const S: string): Boolean;
- begin
- end;
- {
- $Log$
- Revision 1.1 1998-05-04 14:30:12 michael
- * Split file according to Class; implemented dummys for all methods, so unit compiles.
- }
|