FACT++  1.0
vector< const char * > Readline::GetHistory ( ) const

Return a list of pointer to the history contents.

Definition at line 863 of file Readline.cc.

Referenced by GetName().

864 {
865  HIST_ENTRY **next = history_list();
866 
867  vector<const char*> v;
868 
869  for (; *next; next++)
870  v.push_back((*next)->line);
871 
872  return v;
873 }

+ Here is the caller graph for this function: