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 / test / uobjc27a.pp
Size: Mime:
{$mode objfpc}
{$modeswitch objectivec1}

{ Written by Jonas Maebe in 2009, released into the public domain }

unit uobjc27a;

interface

type
  ta = objcclass(NSObject)
  end;

type
  ca = objccategory(ta)
    function ca_categorymethod: longint; message 'ca_categorymethod';
  end;

implementation

uses
  uobjc27b;

function ca.ca_categorymethod: longint;
begin
  result:=da_categorymethod-1;
end;

end.