Hello everyone,

I got a problem, how to convert the following code to class implemention>

type
      TTest = object
        public
            AValue: Integer;
        end;

implementation
const
    TTest_Null: TTest
        = (AValue: 0);
----------------------------------------
to 
      TTest = class(TObject)
        public
            AValue: Integer;
        end;

How to declare implement const in TObject?

Thanks in advance.

Best Regards
leigh

---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to