Changeset 495a53 for molecuilder/src/UIElements/CommandLineWindow.cpp
- Timestamp:
- May 8, 2010, 9:59:27 PM (16 years ago)
- Children:
- 48b5fd
- Parents:
- e04838
- File:
-
- 1 edited
-
molecuilder/src/UIElements/CommandLineWindow.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/CommandLineWindow.cpp
re04838 r495a53 11 11 #include "UIElements/CommandLineStatusIndicator.hpp" 12 12 13 #include "Actions/CmdAction/HelpAction.hpp" 14 #include "Actions/ParserAction/LoadXyzAction.hpp" 15 #include "Actions/ParserAction/SaveXyzAction.hpp" 16 13 17 #include <iostream> 14 18 … … 16 20 17 21 // TODO: see what code can be moved to a base class for Graphic and CommandLine Windows 18 CommandLineWindow::CommandLineWindow( menuPopulaters populaters)22 CommandLineWindow::CommandLineWindow() 19 23 { 24 // create and register all command line callable actions 25 populateParserActions(); 20 26 21 27 // Add status indicators etc... 22 23 28 statusIndicator = new CommandLineStatusIndicator(); 24 29 } … … 31 36 void CommandLineWindow::display() { 32 37 } 38 39 void CommandLineWindow::populateParserActions() 40 { 41 new ParserLoadXyzAction(); 42 new ParserSaveXyzAction(); 43 } 44
Note:
See TracChangeset
for help on using the changeset viewer.
