Mod: replace std::ifstream/std::ofstream with Base::ifstream/Base::ofstream
This commit is contained in:
@@ -55,8 +55,8 @@ PyObject* DrawViewSymbolPy::dumpSymbol(PyObject *args)
|
||||
}
|
||||
|
||||
Base::FileInfo fi(fileSpec);
|
||||
std::ofstream outfile;
|
||||
outfile.open(fi.filePath());
|
||||
Base::ofstream outfile;
|
||||
outfile.open(fi);
|
||||
outfile.write (symbolRepr.c_str(),symbolRepr.size());
|
||||
outfile.close();
|
||||
if (outfile.good()) {
|
||||
|
||||
Reference in New Issue
Block a user