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

Is there a better way to structure post methods in Class Based Views -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

What is happening when Matlab is starting a "parallel pool"? -