writer.inc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. {* TWriter *}
  13. {****************************************************************************}
  14. Procedure TWriter.AddAncestor(Component: TComponent);
  15. begin
  16. end;
  17. function TWriter.GetPosition: Longint;
  18. begin
  19. end;
  20. Procedure TWriter.SetPosition(Value: Longint);
  21. begin
  22. end;
  23. Procedure TWriter.WriteBuffer;
  24. begin
  25. end;
  26. Procedure TWriter.WriteData(Instance: TComponent);
  27. begin
  28. end;
  29. Procedure TWriter.WriteProperty(Instance: TPersistent; PropInfo: Pointer);
  30. begin
  31. end;
  32. Procedure TWriter.WriteProperties(Instance: TPersistent);
  33. begin
  34. end;
  35. Procedure TWriter.WritePropName(const PropName: string);
  36. begin
  37. end;
  38. Procedure TWriter.WriteBinary(wd : TStreamProc);
  39. begin
  40. end;
  41. Procedure TWriter.WritePrefix(Flags: TFilerFlags; AChildPos: Integer);
  42. begin
  43. end;
  44. Procedure TWriter.WriteValue(Value: TValueType);
  45. begin
  46. end;
  47. Destructor TWriter.Destroy;
  48. begin
  49. end;
  50. Procedure TWriter.DefineProperty(const Name: string;
  51. rd : TReaderProc; wd : TWriterProc;
  52. HasData: Boolean);
  53. begin
  54. end;
  55. Procedure TWriter.DefineBinaryProperty(const Name: string;
  56. rd, wd: TStreamProc;
  57. HasData: Boolean);
  58. begin
  59. end;
  60. Procedure TWriter.FlushBuffer;
  61. begin
  62. end;
  63. Procedure TWriter.Write(const Buf; Count: Longint);
  64. begin
  65. end;
  66. Procedure TWriter.WriteBoolean(Value: Boolean);
  67. begin
  68. end;
  69. Procedure TWriter.WriteCollection(Value: TCollection);
  70. begin
  71. end;
  72. Procedure TWriter.WriteComponent(Component: TComponent);
  73. begin
  74. end;
  75. Procedure TWriter.WriteChar(Value: Char);
  76. begin
  77. end;
  78. Procedure TWriter.WriteDescendent(Root: TComponent; AAncestor: TComponent);
  79. begin
  80. end;
  81. Procedure TWriter.WriteFloat(Value: Extended);
  82. begin
  83. end;
  84. Procedure TWriter.WriteIdent(const Ident: string);
  85. begin
  86. end;
  87. Procedure TWriter.WriteInteger(Value: Longint);
  88. begin
  89. end;
  90. Procedure TWriter.WriteListBegin;
  91. begin
  92. end;
  93. Procedure TWriter.WriteListEnd;
  94. begin
  95. end;
  96. Procedure TWriter.WriteRootComponent(Root: TComponent);
  97. begin
  98. end;
  99. Procedure TWriter.WriteSignature;
  100. begin
  101. end;
  102. Procedure TWriter.WriteStr(const Value: string);
  103. begin
  104. end;
  105. Procedure TWriter.WriteString(const Value: string);
  106. begin
  107. end;
  108. {
  109. $Log$
  110. Revision 1.1 1998-05-04 14:30:12 michael
  111. * Split file according to Class; implemented dummys for all methods, so unit compiles.
  112. }