FACT++  1.0
Shell::~Shell ( )

Ends the ncurses environment by calling endwin().

Definition at line 185 of file Shell.cc.

186 {
187  // Maybe not needed because the window is more or less valid until the
188  // object is destructed anyway.
189  //win.SetWindow(0);
190  //wout.SetWindow(0);
191  //SetWindow(0);
192 
193  endwin();
194  cout << "The end." << endl;
195 }