On Sat, 15 Mar 2014, Xiangrong Fang wrote:
Hi All,
I wonder where should I put procedure modifiers, in the interface section, or
implementation section, or both?
e.g.
interface
function test(data: Integer): Integer; inline; <-- here?
Interface is the place where you should put them for s
Hi All,
I wonder where should I put procedure modifiers, in the interface section,
or implementation section, or both?
e.g.
interface
function test(data: Integer): Integer; inline; <-- here?
implementation
function test(data: Integer): Integer; inline; <-- here?
begin
//..
end;
Thanks,
Xi