Changeset ad011c for src/UIElements/CommandLineUI
- Timestamp:
- Dec 23, 2010, 5:40:13 PM (14 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 56f73b
- Parents:
- a0064e
- git-author:
- Frederik Heber <heber@…> (12/22/10 10:33:36)
- git-committer:
- Frederik Heber <heber@…> (12/23/10 17:40:13)
- Location:
- src/UIElements/CommandLineUI
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineDialog.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/CommandLineDialog.hpp" -
src/UIElements/CommandLineUI/CommandLineParser.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <boost/filesystem.hpp> … … 32 32 #include "Actions/OptionTrait.hpp" 33 33 #include "Actions/Values.hpp" 34 #include " Helpers/Log.hpp"35 #include " Helpers/Verbose.hpp"34 #include "CodePatterns/Log.hpp" 35 #include "CodePatterns/Verbose.hpp" 36 36 #include "CommandLineParser.hpp" 37 37 #include "CommandLineParser_validate.hpp" 38 38 39 #include " Patterns/Singleton_impl.hpp"39 #include "CodePatterns/Singleton_impl.hpp" 40 40 41 41 class element; -
src/UIElements/CommandLineUI/CommandLineParser.hpp
ra0064e rad011c 13 13 namespace po = boost::program_options; 14 14 15 #include " Patterns/Singleton.hpp"15 #include "CodePatterns/Singleton.hpp" 16 16 #include "UIElements/CommandLineUI/TypeEnumContainer.hpp" 17 17 -
src/UIElements/CommandLineUI/CommandLineParser_validate.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <boost/version.hpp> -
src/UIElements/CommandLineUI/CommandLineStatusIndicator.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/CommandLineStatusIndicator.hpp" -
src/UIElements/CommandLineUI/CommandLineStatusIndicator.hpp
ra0064e rad011c 9 9 #define COMMANDLINESTATUSINDICATOR_HPP_ 10 10 11 #include " Patterns/Observer.hpp"11 #include "CodePatterns/Observer.hpp" 12 12 13 13 class CommandLineStatusIndicator : public Observer -
src/UIElements/CommandLineUI/CommandLineUIFactory.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/CommandLineUIFactory.hpp" -
src/UIElements/CommandLineUI/CommandLineWindow.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <boost/bind.hpp> … … 25 25 #include "CommandLineUI/CommandLineStatusIndicator.hpp" 26 26 27 #include " Helpers/Log.hpp"28 #include " Helpers/Verbose.hpp"27 #include "CodePatterns/Log.hpp" 28 #include "CodePatterns/Verbose.hpp" 29 29 30 30 #include "Actions/Action.hpp" -
src/UIElements/CommandLineUI/Query/AtomCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <iostream> … … 27 27 #include "CommandLineUI/Query/CommandLineQuery.hpp" 28 28 #include "CommandLineUI/CommandLineParser.hpp" 29 #include " Helpers/Log.hpp"30 #include " Helpers/Verbose.hpp"29 #include "CodePatterns/Log.hpp" 30 #include "CodePatterns/Verbose.hpp" 31 31 #include "World.hpp" 32 32 #include "Box.hpp" -
src/UIElements/CommandLineUI/Query/AtomsCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <Descriptors/AtomDescriptor.hpp> … … 24 24 #include "CommandLineUI/Query/CommandLineQuery.hpp" 25 25 #include "CommandLineUI/CommandLineParser.hpp" 26 #include " Helpers/Log.hpp"27 #include " Helpers/Verbose.hpp"26 #include "CodePatterns/Log.hpp" 27 #include "CodePatterns/Verbose.hpp" 28 28 #include "World.hpp" 29 29 -
src/UIElements/CommandLineUI/Query/BooleanCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::BooleanCommandLineQuery::BooleanCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/BoxCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "Actions/Values.hpp" 23 23 #include "CommandLineUI/Query/CommandLineQuery.hpp" 24 24 #include "CommandLineUI/CommandLineParser.hpp" 25 #include " Helpers/Log.hpp"26 #include " Helpers/Verbose.hpp"25 #include "CodePatterns/Log.hpp" 26 #include "CodePatterns/Verbose.hpp" 27 27 #include "LinearAlgebra/RealSpaceMatrix.hpp" 28 28 -
src/UIElements/CommandLineUI/Query/DoubleCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 -
src/UIElements/CommandLineUI/Query/DoublesCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::DoublesCommandLineQuery::DoublesCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/ElementCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 #include "element.hpp" 27 27 #include "periodentafel.hpp" -
src/UIElements/CommandLineUI/Query/ElementsCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 #include "element.hpp" 27 27 #include "periodentafel.hpp" -
src/UIElements/CommandLineUI/Query/EmptyCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <iostream> … … 24 24 #include "CommandLineUI/Query/CommandLineQuery.hpp" 25 25 #include "CommandLineUI/CommandLineParser.hpp" 26 #include " Helpers/Log.hpp"27 #include " Helpers/Verbose.hpp"26 #include "CodePatterns/Log.hpp" 27 #include "CodePatterns/Verbose.hpp" 28 28 29 29 CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/FileCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::FileCommandLineQuery::FileCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/IntCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/IntsCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::IntsCommandLineQuery::IntsCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/MoleculeCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <Descriptors/MoleculeDescriptor.hpp> … … 25 25 #include "CommandLineUI/Query/CommandLineQuery.hpp" 26 26 #include "CommandLineUI/CommandLineParser.hpp" 27 #include " Helpers/Log.hpp"28 #include " Helpers/Verbose.hpp"27 #include "CodePatterns/Log.hpp" 28 #include "CodePatterns/Verbose.hpp" 29 29 30 30 CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/MoleculesCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <Descriptors/MoleculeDescriptor.hpp> … … 25 25 #include "CommandLineUI/Query/CommandLineQuery.hpp" 26 26 #include "CommandLineUI/CommandLineParser.hpp" 27 #include " Helpers/Log.hpp"28 #include " Helpers/Verbose.hpp"27 #include "CodePatterns/Log.hpp" 28 #include "CodePatterns/Verbose.hpp" 29 29 #include "World.hpp" 30 30 -
src/UIElements/CommandLineUI/Query/StringCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/StringsCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "CommandLineUI/Query/CommandLineQuery.hpp" 23 23 #include "CommandLineUI/CommandLineParser.hpp" 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "CodePatterns/Log.hpp" 25 #include "CodePatterns/Verbose.hpp" 26 26 27 27 CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(string title, string _description) : -
src/UIElements/CommandLineUI/Query/VectorCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include "Actions/Values.hpp" 23 23 #include "CommandLineUI/Query/CommandLineQuery.hpp" 24 24 #include "CommandLineUI/CommandLineParser.hpp" 25 #include " Helpers/Log.hpp"26 #include " Helpers/Verbose.hpp"25 #include "CodePatterns/Log.hpp" 26 #include "CodePatterns/Verbose.hpp" 27 27 #include "LinearAlgebra/Vector.hpp" 28 28 #include "Box.hpp" -
src/UIElements/CommandLineUI/Query/VectorsCommandLineQuery.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <vector> … … 25 25 #include "CommandLineUI/Query/CommandLineQuery.hpp" 26 26 #include "CommandLineUI/CommandLineParser.hpp" 27 #include " Helpers/Log.hpp"28 #include " Helpers/Verbose.hpp"27 #include "CodePatterns/Log.hpp" 28 #include "CodePatterns/Verbose.hpp" 29 29 #include "World.hpp" 30 30 -
src/UIElements/CommandLineUI/TypeEnumContainer.cpp
ra0064e rad011c 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "CodePatterns/MemDebug.hpp" 21 21 22 22 #include <boost/filesystem.hpp> … … 26 26 27 27 #include "Actions/Values.hpp" 28 #include " Helpers/Assert.hpp"28 #include "CodePatterns/Assert.hpp" 29 29 30 30 #include "UIElements/CommandLineUI/TypeEnumContainer.hpp"
Note:
See TracChangeset
for help on using the changeset viewer.