[fpc-pascal] Class helpers and properties

Mark Morgan Lloyd markMLl.fpc-pascal at telemetry.co.uk
Fri Jan 27 22:46:31 CET 2012


If a class has a public reader property like this:

         TLexemeList= class(TObject)
         protected
           fValue: TPrimaevalValue;
         public
           property Value: TPrimaevalValue read fValue;
         ...

is there a way of allowing a class helper to augment this with a 
protected writer property? My attempt as below messed up the reader:

         TLLEvaluator = class helper for TLexemeList
         private
           procedure SetValue(v: TPrimaevalValue);
         protected
           property Value: TPrimaevalValue write SetValue;
         ...

-- 
Mark Morgan Lloyd
markMLl .AT. telemetry.co .DOT. uk

[Opinions above are the author's, not those of his employers or colleagues]



More information about the fpc-pascal mailing list