| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- {
- $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.
- **********************************************************************}
- {****************************************************************************}
- {* TWriter *}
- {****************************************************************************}
- Procedure TWriter.AddAncestor(Component: TComponent);
- begin
- end;
- function TWriter.GetPosition: Longint;
- begin
- end;
- Procedure TWriter.SetPosition(Value: Longint);
- begin
- end;
- Procedure TWriter.WriteBuffer;
- begin
- end;
- Procedure TWriter.WriteData(Instance: TComponent);
- begin
- end;
- Procedure TWriter.WriteProperty(Instance: TPersistent; PropInfo: Pointer);
- begin
- end;
- Procedure TWriter.WriteProperties(Instance: TPersistent);
- begin
- end;
- Procedure TWriter.WritePropName(const PropName: string);
- begin
- end;
- Procedure TWriter.WriteBinary(wd : TStreamProc);
- begin
- end;
- Procedure TWriter.WritePrefix(Flags: TFilerFlags; AChildPos: Integer);
- begin
- end;
- Procedure TWriter.WriteValue(Value: TValueType);
- begin
- end;
- Destructor TWriter.Destroy;
- begin
- end;
- Procedure TWriter.DefineProperty(const Name: string;
- rd : TReaderProc; wd : TWriterProc;
- HasData: Boolean);
- begin
- end;
- Procedure TWriter.DefineBinaryProperty(const Name: string;
- rd, wd: TStreamProc;
- HasData: Boolean);
- begin
- end;
- Procedure TWriter.FlushBuffer;
- begin
- end;
- Procedure TWriter.Write(const Buf; Count: Longint);
- begin
- end;
- Procedure TWriter.WriteBoolean(Value: Boolean);
- begin
- end;
- Procedure TWriter.WriteCollection(Value: TCollection);
- begin
- end;
- Procedure TWriter.WriteComponent(Component: TComponent);
- begin
- end;
- Procedure TWriter.WriteChar(Value: Char);
- begin
- end;
- Procedure TWriter.WriteDescendent(Root: TComponent; AAncestor: TComponent);
- begin
- end;
- Procedure TWriter.WriteFloat(Value: Extended);
- begin
- end;
- Procedure TWriter.WriteIdent(const Ident: string);
- begin
- end;
- Procedure TWriter.WriteInteger(Value: Longint);
- begin
- end;
- Procedure TWriter.WriteListBegin;
- begin
- end;
- Procedure TWriter.WriteListEnd;
- begin
- end;
- Procedure TWriter.WriteRootComponent(Root: TComponent);
- begin
- end;
- Procedure TWriter.WriteSignature;
- begin
- end;
- Procedure TWriter.WriteStr(const Value: string);
- begin
- end;
- Procedure TWriter.WriteString(const Value: string);
- 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.
- }
|