Hi guys,

Suppose I have a map

map<CString,__int64> infoMap;

and its filled by a fn

returnType GetInfo()
{
...
...
...

return infoMap;

}


what should be the return type ?
Thanks a lot.