class Demo {
struct FileData {
int size;
BYTE* buffer;
DWORD flags;
};
typedef std::tr1::unordered_map<std::wstring,FileData> FileMap;
FileMap m_fileMap;
void myFunc()
{
std::wstring name = L"TestFile.png";
FileMap::const_iterator iter = m_fileMap.find(name);
std::cout << iter->first;
}
};
Look at the code above. My problem is how does FileMap::const_iterator works. Does it make a copy of key(std::wstring) and value(FileData)? Or does it just holds pointers/reference to the key and value?