Hi all,
I need a primer on how to convert C++ to PB (as the subject instigates).
How do you translate the "new" keyword in a statement like this:
How do you define a class in PB, i.e. translate something like this:
------------------
Balt
balt at inside dot net
"It's not the end, not even the beginning of the end, but, it might be the end of the beginning!"
I need a primer on how to convert C++ to PB (as the subject instigates).
How do you translate the "new" keyword in a statement like this:
Code:
xyz = new XYZ(hWnd, &r1);
Code:
class XYZ xxyyzz { private: CNullStorage storage; CMySite site; public: HWND hWnd; ... }
------------------
Balt
balt at inside dot net
"It's not the end, not even the beginning of the end, but, it might be the end of the beginning!"
Comment