CFile myFunc()
{
CFile f(...);
return f;
}
CFile x = myFunc();
or it have to be pointer (CFile *)? Is there any way to avoid using
pointers?
I'm scared that some exception might occur and that I will not release it.
int CFile myFunc(CFile& f)
{
...
return 0;
}
"Petar Popara" <my....@mail.net> schrieb im Newsbeitrag
news:%23x4qMbK...@TK2MSFTNGP09.phx.gbl...