c++11 - C++ map of a key and file doesn't work -


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

Popular posts from this blog

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -

angular - DownloadURL return null in below code -