FACT++  1.0
Readline::~Readline ( )
virtual

Writes the current history to the file with the name stored in fName. In addition the written file is truncated to fMaxLines to keep the file of a reasonable size. The number of lines fMaxLines can be set by SetMaxLines before the destructor is called. Setting fMaxLines to 0 or a negative value switches automatic truncation off.

Definition at line 167 of file Readline.cc.

References fMaxLines, and fName.

Referenced by SetSection().

168 {
169  // Write current history to file
170  if (write_history(fName.c_str()))
171  cout << "WARNING - Write " << fName.c_str() << ": " << strerror(errno) << endl;
172 
173  // Truncate file
174  if (fMaxLines>0 && history_truncate_file(fName.c_str(), fMaxLines))
175  cout << "WARNING - Truncate " << fName.c_str() << ": " << strerror(errno) << endl;
176 }
int fMaxLines
Filename for the history file compiled in the constructor.
Definition: Readline.h:23
std::string fName
Definition: Readline.h:22

+ Here is the caller graph for this function: