c++11 - C++ map of a key and file doesn't work -
this question has answer here:
i want create map of key , corresponding file in c++. used below snipper, giving mean exception @ last line *m_jstabfilesmap[key] << text;
:
std::map<std::string, std::ofstream*> m_jstabfilesmap; std::string text = "hello all"; std::string key = "a"; *m_jstabfilesmap[key] << text;
the copy constructor of std::ofstream
explicitely deleted. have store streams pointer or in different way doesn't try copy stream object if want them in map.
Comments
Post a Comment