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 / tobjcl2.pp
Size: Mime:
{ %target=darwin }
{ %cpu=powerpc,powerpc64,i386,x86_64,arm }
{ %NEEDLIBRARY }

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

{$mode objfpc}
{$modeswitch objectivec1}

const
{$ifdef windows}
  libname='tobjcl1.dll';
{$else}
  libname='tobjcl1';
  {$linklib tobjcl1}
{$endif}

type
  MyLibObjCClass = objcclass external (NSObject)
   public
    fa: byte;
    function publicfun: byte; message 'publicfun';
   protected
    fb: byte;
    function protectedfun: byte; message 'protectedfun';
   private
    fc: byte;
    function privatefun: byte; message 'privatefun';
  end;

  MyDerivedClass = objcclass(MyLibObjCClass)
    l: longint;
    function callprotectedfun: byte; message 'callprotectedfun';
  end;


function MyDerivedClass.callprotectedfun: byte;
  begin
    result:=protectedfun;
  end;


var
  a: MyLibObjCClass;
begin
  a:=NSObject(MyDerivedClass.alloc).init;
  a.fa:=55;
  a.fb:=66;
  if a.publicfun<>55 then
    halt(1);
  if MyDerivedClass(a).callprotectedfun<>66 then
    halt(2);
  a.release;
end.