Friends
On HP-UX box when Iam passing a string object to function Im getting the following below error
Error 422: "../header/Handler.h", line 24 # 'string' is used as a type, but has not been defined as a type. Perhaps you meant 'String' as in class String
["/opt/aCC/include/SC/String.h", line 66].
int populateBindingHandle(rpc_if_handle_t p_if_spec, string p_cell_name);
why would I get an error to use String.h not
how does a declaration String newstr;
different from
string newstr; ??
Many Thanks