Hello,
I have the following class with overloaded constructor.

class a {
public:
a();
a(UInt32);
~a();
};

Now I want to instantiate the class using the a(UInt32) constructor.
On a PC I would use:
a* obj = new a(1);

I want the object memory to be a movable chunk (MemHandle).
How do I pass arguments to the constructor?


Thanks,
Lukasz

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to