Changeset e62daa for molecuilder/src/UIElements/CommandLineWindow.cpp
- Timestamp:
- May 9, 2010, 12:00:08 PM (16 years ago)
- Children:
- acf2f4, dbec4e
- Parents:
- b918031
- File:
-
- 1 edited
-
molecuilder/src/UIElements/CommandLineWindow.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/CommandLineWindow.cpp
rb918031 re62daa 13 13 #include "Actions/ActionRegistry.hpp" 14 14 #include "Actions/CmdAction/HelpAction.hpp" 15 #include "Actions/CmdAction/VersionAction.hpp" 15 16 #include "Actions/ParserAction/LoadXyzAction.hpp" 16 17 #include "Actions/ParserAction/SaveXyzAction.hpp" … … 25 26 { 26 27 // create and register all command line callable actions 28 populateAtomActions(); 29 populateCmdActions(); 30 populateFragmentationActions(); 31 populateMoleculeActions(); 27 32 populateParserActions(); 33 populateTesselationActions(); 28 34 29 35 // Add status indicators etc... … … 46 52 } 47 53 54 void CommandLineWindow::populateAtomActions() 55 { 56 } 57 58 void CommandLineWindow::populateCmdActions() 59 { 60 new CommandLineHelpAction(); 61 new CommandLineVersionAction(); 62 } 63 64 void CommandLineWindow::populateFragmentationActions() 65 { 66 } 67 68 void CommandLineWindow::populateMoleculeActions() 69 { 70 } 71 48 72 void CommandLineWindow::populateParserActions() 49 73 { 50 new CommandLineHelpAction();51 74 new ParserLoadXyzAction(); 52 75 new ParserSaveXyzAction(); 53 76 } 54 77 78 void CommandLineWindow::populateTesselationActions() 79 { 80 } 81
Note:
See TracChangeset
for help on using the changeset viewer.
