05ba8a3a07
git-svn-id: http://root.cern.ch/svn/root/trunk@45844 27541ba8-7e3a-0410-8455-c3a389f83636
8 lines
124 B
C++
8 lines
124 B
C++
#include <fstream>
|
|
#include <string>
|
|
|
|
void Overloads () {
|
|
std::string s;
|
|
std::ofstream("file.txt") << s << std::endl;
|
|
}
|