parser.inc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1998 by the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {****************************************************************************}
  12. {* TParser *}
  13. {****************************************************************************}
  14. Procedure TParser.ReadBuffer;
  15. begin
  16. end;
  17. Procedure TParser.SkipBlanks;
  18. begin
  19. end;
  20. constructor TParser.Create(Stream: TStream);
  21. begin
  22. end;
  23. destructor TParser.Destroy;
  24. begin
  25. end;
  26. Procedure TParser.CheckToken(T: Char);
  27. begin
  28. end;
  29. Procedure TParser.CheckTokenSymbol(const S: string);
  30. begin
  31. end;
  32. Procedure TParser.Error(const Ident: string);
  33. begin
  34. end;
  35. {!!!!!!
  36. Procedure TParser.ErrorFmt(const Ident: string; const Args: array of const);
  37. begin
  38. end;
  39. !!!!!!}
  40. Procedure TParser.ErrorStr(const Message: string);
  41. begin
  42. end;
  43. Procedure TParser.HexToBinary(Stream: TStream);
  44. begin
  45. end;
  46. Function TParser.NextToken: Char;
  47. begin
  48. end;
  49. Function TParser.SourcePos: Longint;
  50. begin
  51. end;
  52. Function TParser.TokenComponentIdent: String;
  53. begin
  54. end;
  55. Function TParser.TokenFloat: Extended;
  56. begin
  57. end;
  58. Function TParser.TokenInt: Longint;
  59. begin
  60. end;
  61. Function TParser.TokenString: string;
  62. begin
  63. end;
  64. Function TParser.TokenSymbolIs(const S: string): Boolean;
  65. begin
  66. end;
  67. {
  68. $Log$
  69. Revision 1.1 1998-05-04 14:30:12 michael
  70. * Split file according to Class; implemented dummys for all methods, so unit compiles.
  71. }