Hi all,

I am developing a new app using a persistence framework initially developed
for Delphi.
The following code doesn't compile:

published
    property AsTimeStamp: TTimeStamp read GetAsTimeStamp write
SetAsTimeStamp;


published
    property AsBCD: TBCD read GetAsBCD write SetAsBCD;

The compiler error is:  Error: This kind of property can't be published
If I move the properties declaration to the public section of the class
declaration,it's fine.

The class implements an interface of the type:

  // Interface to provide access to attribute as TimeStamp
  IAsTimeStampAccess = interface(IInterface)
  ['{257D2135-478A-4D46-918F-289678567B7F}']
     function GetAsTimeStamp: TTimeStamp;
     procedure SetAsTimeStamp(const aValue: TTimeStamp);
     property AsTimeStamp: TTimeStamp read GetAsTimeStamp write
SetAsTimeStamp;
  end;

But it works for string, integer and other basic type properties.

Is this a bug?

Best regards,

Gerard.
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to