Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw21941.pp
Size: Mime:
{%norun}
program tw21941;

{$mode objfpc}{$H+}

type
  TACLInfo = record
    Name: string;
  end;
  PACLInfo = ^TACLInfo;

  TCLSInfo = record
    Name: string;
  end;
  PCLSInfo = ^TCLSInfo;

  TCoreObjectInfo = record
    CLSInfo: PCLSInfo;
    ACLInfo: PACLInfo;
  end;

type
  Root = class
  type
    Test = class
    const
      ACLInfo: TACLInfo = (
        Name: 'Admin';
      );
      CLSInfo: TCLSInfo = (
        Name: 'TAdminCore';
      );
      Header: TCoreObjectInfo = (
        CLSInfo: @CLSInfo;
        ACLInfo: @ACLInfo;
      );
    end;
  end;
begin
end.