View Single Post
Old May 15th, 2006, 3:07 PM   #1
KodeKid
Newbie
 
KodeKid's Avatar
 
Join Date: Apr 2006
Location: CANADA
Posts: 4
Rep Power: 0 KodeKid is on a distinguished road
Object Pascal Q: object instance as parameter

I can't figure out how to pass an object as a parameter (using Free Pascal 2.02)

for example, in Java is simple:

void addItem(Item itemName)

itemName is a "reference" to a instance if Item class but....

OO Pascal???

Procedure addItem( itemName : TItem);


I've tried using ^Ttype and Ttype here but neither works..

WTF? Help!
KodeKid is offline   Reply With Quote