> I understand it is possible to use C++ in codewarrior. Is there any
> special procedure I need to follow for defining and using classes in the
> palm application?

You can use C++ with CodeWarrior for PalmOS.  HOWEVER, you have to be
careful...

The primary problem is that of globals.  When your application is launched,
you may or may not have access to your globals, depending on the reason your
app was launched.

If you do have access to globals, everything is fine.  But if you don't, you
won't be able to access static class members and virtual functions break
down (because the virtual function table pointer is a class global).

I've not played with C++ much, so I don't know of any workarounds, if they
exist.

---- --- -- -
Matthew D Moss
[EMAIL PROTECTED]


Reply via email to