Skip to content
Snippets Groups Projects
Commit 85f3b095 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

..

parent 834f0ec2
No related branches found
No related tags found
No related merge requests found
......@@ -62,11 +62,9 @@ void NFileIn::load(void)
FS.close();
} else
throw "unknown file extension [" + fext + "]";
fclose( F_in );
}
catch(string& ex) {
// for y08 only
cerr << "Cannot load " << vflong[i] << ": " << ex << endl;
if (F_in)
fclose(F_in);
......@@ -172,9 +170,8 @@ void NFileIn::Load_08(ifstream& FS,string flong)
const YAML::Node& pName = doc["Formula"];
if( !pName )
throw S("DEFICIENT FILE: no formula");
//string expr;
string expr=pName.as<string>();
fc->parse_function( expr );
string s = pName.as<string>();
fc->parse_function( s );
fc->curve_set_defaults();
}
......@@ -217,8 +214,7 @@ void NFileIn::Load_08(ifstream& FS,string flong)
while( val != "" ) {
triv::string_extract_line( val, &lin, &res );
double vx, vy, dy;
if( sscanf( lin.c_str(),
"%lg %lg %lg\n",&vx, &vy, &dy )!=3 )
if( sscanf( lin.c_str(), "%lg %lg %lg\n",&vx, &vy, &dy )!=3 )
throw "xyd: bad data line: " + lin;
sout->push_xyd( vx, vy, dy );
val = res;
......
......@@ -38,12 +38,12 @@ void NFileOut::save( string fmt, bool allow_overwrite )
while( (f=iter()) ) {
// query output file name
outfnam = wask( "Save as (."+fmt+")", f->name);
if ( outfnam=="" ) return;
if ( outfnam=="" )
return;
f->name = outfnam;
outfnam += "."+fmt;
// document file save
f->lDoc.push_back( "fs " + outfnam + " # " +
triv::time2strg( time(0) ) );
f->lDoc.push_back( "fs " + outfnam + " # " + triv::time2strg( time(0) ) );
// prevent unintended overwriting
if( !allow_overwrite ){
if ( (file = fopen(outfnam.c_str(), "r")) ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment