pOrder->GetValue(CL_ORD_ID, sVal);
what will be the status of pOrder here??
Getvalue function is to store value Of svalue to CL_ORD_ID
pOrder would be a pointer to the class which GetValue() is a member of... as for the
it is for the most part unchanged.. try to be more clear about what your asking
I assume this is confusing since pOrder is a 'pointer'. the only differance, when you initialize pOrder
|
your_class* pOrder = new your_class;
| |
you never actually 'create' a new variable
Last edited on