Changeset 11056 for trunk/FACT++/src/fadctrl.cc
- Timestamp:
- 06/18/11 12:12:23 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fadctrl.cc
r11043 r11056 1408 1408 } 1409 1409 1410 /* 1410 1411 template<class S> 1411 1412 int RunDim(Configuration &conf) 1412 1413 { 1413 /*1414 initscr(); // Start curses mode1415 cbreak(); // Line buffering disabled, Pass on1416 intrflush(stdscr, FALSE);1417 start_color(); // Initialize ncurses colors1418 use_default_colors(); // Assign terminal default colors to -11419 for (int i=1; i<8; i++)1420 init_pair(i, i, -1); // -1: def background1421 scrollok(stdscr, true);1422 */1423 1424 1414 WindowLog wout; 1425 1415 1426 1416 ReadlineColor::PrintBootMsg(wout, conf.GetName(), false); 1427 1417 1428 //log.SetWindow(stdscr);1429 1418 if (conf.Has("log")) 1430 1419 if (!wout.OpenLogFile(conf.Get<string>("log"))) … … 1441 1430 return 0; 1442 1431 } 1432 */ 1443 1433 1444 1434 template<class T, class S> … … 1584 1574 { 1585 1575 if (conf.Get<bool>("no-dim")) 1586 return Run Dim<StateMachine>(conf);1576 return RunShell<LocalStream, StateMachine>(conf); 1587 1577 else 1588 return Run Dim<StateMachineDim>(conf);1578 return RunShell<LocalStream, StateMachineDim>(conf); 1589 1579 } 1590 1580 // Cosole access w/ and w/o Dim
Note:
See TracChangeset
for help on using the changeset viewer.