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.0.0 / tests / test / uobjc24.pp
Size: Mime:
{$modeswitch objectivec1}

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

unit uobjc24;

interface

type
  ta = objcclass(NSObject)
  end;

implementation

type
  ca = objccategory(ta)
    procedure implementationcategorymethod;
  end;

procedure ca.implementationcategorymethod;
begin
end;

end.