|
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!
|