Ignore:
Timestamp:
Dec 23, 2010, 5:40:13 PM (14 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

CodePatterns places all includes now in subfolder CodePatterns/.

  • change all includes accordingly.
  • this was necessary as Helpers and Patterns are not very distinctive names for include folders. Already now, we had a conflict between Helpers from CodePatterns and Helpers from this project.
  • changed compilation test in ax_codepatterns.m4 when changing CodePatterns includes.
Location:
src/UIElements/CommandLineUI
Files:
27 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/CommandLineUI/CommandLineDialog.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/CommandLineDialog.hpp"
  • src/UIElements/CommandLineUI/CommandLineParser.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <boost/filesystem.hpp>
     
    3232#include "Actions/OptionTrait.hpp"
    3333#include "Actions/Values.hpp"
    34 #include "Helpers/Log.hpp"
    35 #include "Helpers/Verbose.hpp"
     34#include "CodePatterns/Log.hpp"
     35#include "CodePatterns/Verbose.hpp"
    3636#include "CommandLineParser.hpp"
    3737#include "CommandLineParser_validate.hpp"
    3838
    39 #include "Patterns/Singleton_impl.hpp"
     39#include "CodePatterns/Singleton_impl.hpp"
    4040
    4141class element;
  • src/UIElements/CommandLineUI/CommandLineParser.hpp

    ra0064e rad011c  
    1313namespace po = boost::program_options;
    1414
    15 #include "Patterns/Singleton.hpp"
     15#include "CodePatterns/Singleton.hpp"
    1616#include "UIElements/CommandLineUI/TypeEnumContainer.hpp"
    1717
  • src/UIElements/CommandLineUI/CommandLineParser_validate.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <boost/version.hpp>
  • src/UIElements/CommandLineUI/CommandLineStatusIndicator.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/CommandLineStatusIndicator.hpp"
  • src/UIElements/CommandLineUI/CommandLineStatusIndicator.hpp

    ra0064e rad011c  
    99#define COMMANDLINESTATUSINDICATOR_HPP_
    1010
    11 #include "Patterns/Observer.hpp"
     11#include "CodePatterns/Observer.hpp"
    1212
    1313class CommandLineStatusIndicator : public Observer
  • src/UIElements/CommandLineUI/CommandLineUIFactory.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/CommandLineUIFactory.hpp"
  • src/UIElements/CommandLineUI/CommandLineWindow.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <boost/bind.hpp>
     
    2525#include "CommandLineUI/CommandLineStatusIndicator.hpp"
    2626
    27 #include "Helpers/Log.hpp"
    28 #include "Helpers/Verbose.hpp"
     27#include "CodePatterns/Log.hpp"
     28#include "CodePatterns/Verbose.hpp"
    2929
    3030#include "Actions/Action.hpp"
  • src/UIElements/CommandLineUI/Query/AtomCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <iostream>
     
    2727#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2828#include "CommandLineUI/CommandLineParser.hpp"
    29 #include "Helpers/Log.hpp"
    30 #include "Helpers/Verbose.hpp"
     29#include "CodePatterns/Log.hpp"
     30#include "CodePatterns/Verbose.hpp"
    3131#include "World.hpp"
    3232#include "Box.hpp"
  • src/UIElements/CommandLineUI/Query/AtomsCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <Descriptors/AtomDescriptor.hpp>
     
    2424#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2525#include "CommandLineUI/CommandLineParser.hpp"
    26 #include "Helpers/Log.hpp"
    27 #include "Helpers/Verbose.hpp"
     26#include "CodePatterns/Log.hpp"
     27#include "CodePatterns/Verbose.hpp"
    2828#include "World.hpp"
    2929
  • src/UIElements/CommandLineUI/Query/BooleanCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::BooleanCommandLineQuery::BooleanCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/BoxCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "Actions/Values.hpp"
    2323#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2424#include "CommandLineUI/CommandLineParser.hpp"
    25 #include "Helpers/Log.hpp"
    26 #include "Helpers/Verbose.hpp"
     25#include "CodePatterns/Log.hpp"
     26#include "CodePatterns/Verbose.hpp"
    2727#include "LinearAlgebra/RealSpaceMatrix.hpp"
    2828
  • src/UIElements/CommandLineUI/Query/DoubleCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727
  • src/UIElements/CommandLineUI/Query/DoublesCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::DoublesCommandLineQuery::DoublesCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/ElementCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626#include "element.hpp"
    2727#include "periodentafel.hpp"
  • src/UIElements/CommandLineUI/Query/ElementsCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626#include "element.hpp"
    2727#include "periodentafel.hpp"
  • src/UIElements/CommandLineUI/Query/EmptyCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <iostream>
     
    2424#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2525#include "CommandLineUI/CommandLineParser.hpp"
    26 #include "Helpers/Log.hpp"
    27 #include "Helpers/Verbose.hpp"
     26#include "CodePatterns/Log.hpp"
     27#include "CodePatterns/Verbose.hpp"
    2828
    2929CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/FileCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::FileCommandLineQuery::FileCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/IntCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/IntsCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::IntsCommandLineQuery::IntsCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/MoleculeCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <Descriptors/MoleculeDescriptor.hpp>
     
    2525#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2626#include "CommandLineUI/CommandLineParser.hpp"
    27 #include "Helpers/Log.hpp"
    28 #include "Helpers/Verbose.hpp"
     27#include "CodePatterns/Log.hpp"
     28#include "CodePatterns/Verbose.hpp"
    2929
    3030CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/MoleculesCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <Descriptors/MoleculeDescriptor.hpp>
     
    2525#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2626#include "CommandLineUI/CommandLineParser.hpp"
    27 #include "Helpers/Log.hpp"
    28 #include "Helpers/Verbose.hpp"
     27#include "CodePatterns/Log.hpp"
     28#include "CodePatterns/Verbose.hpp"
    2929#include "World.hpp"
    3030
  • src/UIElements/CommandLineUI/Query/StringCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/StringsCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2323#include "CommandLineUI/CommandLineParser.hpp"
    24 #include "Helpers/Log.hpp"
    25 #include "Helpers/Verbose.hpp"
     24#include "CodePatterns/Log.hpp"
     25#include "CodePatterns/Verbose.hpp"
    2626
    2727CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(string title, string _description) :
  • src/UIElements/CommandLineUI/Query/VectorCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include "Actions/Values.hpp"
    2323#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2424#include "CommandLineUI/CommandLineParser.hpp"
    25 #include "Helpers/Log.hpp"
    26 #include "Helpers/Verbose.hpp"
     25#include "CodePatterns/Log.hpp"
     26#include "CodePatterns/Verbose.hpp"
    2727#include "LinearAlgebra/Vector.hpp"
    2828#include "Box.hpp"
  • src/UIElements/CommandLineUI/Query/VectorsCommandLineQuery.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <vector>
     
    2525#include "CommandLineUI/Query/CommandLineQuery.hpp"
    2626#include "CommandLineUI/CommandLineParser.hpp"
    27 #include "Helpers/Log.hpp"
    28 #include "Helpers/Verbose.hpp"
     27#include "CodePatterns/Log.hpp"
     28#include "CodePatterns/Verbose.hpp"
    2929#include "World.hpp"
    3030
  • src/UIElements/CommandLineUI/TypeEnumContainer.cpp

    ra0064e rad011c  
    1818#endif
    1919
    20 #include "Helpers/MemDebug.hpp"
     20#include "CodePatterns/MemDebug.hpp"
    2121
    2222#include <boost/filesystem.hpp>
     
    2626
    2727#include "Actions/Values.hpp"
    28 #include "Helpers/Assert.hpp"
     28#include "CodePatterns/Assert.hpp"
    2929
    3030#include "UIElements/CommandLineUI/TypeEnumContainer.hpp"
Note: See TracChangeset for help on using the changeset viewer.