Ignore:
Timestamp:
Jun 11, 2015, 11:21:41 PM (10 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:
08d042
Parents:
043598
git-author:
Frederik Heber <heber@…> (05/17/15 13:50:53)
git-committer:
Frederik Heber <heber@…> (06/11/15 23:21:41)
Message:

Replaced Query.. class and query..() function declarations in Dialog.. by boost preprocessor magic.

  • this removes a lot of copy&paste code.
File:
1 edited

Legend:

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

    r043598 r37a67f  
    3434
    3535  virtual void queryEmpty(const std::string ="", const std::string = "");
    36   virtual void queryInt(Parameter<int> &, const std::string ="", const std::string = "");
    37   virtual void queryInts(Parameter<std::vector<int> > &, const std::string ="", const std::string = "");
    38   virtual void queryUnsignedInt(Parameter<unsigned int> &, const std::string ="", const std::string = "");
    39   virtual void queryUnsignedInts(Parameter<std::vector<unsigned int> > &, const std::string ="", const std::string = "");
    40   virtual void queryBoolean(Parameter<bool> &, const std::string ="", const std::string = "");
    41   virtual void queryString(Parameter<std::string> &, const std::string ="", const std::string = "");
    42   virtual void queryStrings(Parameter<std::vector<std::string> > &, const std::string ="", const std::string = "");
    43   virtual void queryDouble(Parameter<double> &, const std::string ="", const std::string = "");
    44   virtual void queryDoubles(Parameter<std::vector<double> > &, const std::string ="", const std::string = "");
    45   virtual void queryAtom(Parameter<const atom *> &, const std::string ="", const std::string = "");
    46   virtual void queryAtoms(Parameter<std::vector<const atom *> > &, const std::string ="", const std::string = "");
    47   virtual void queryMolecule(Parameter<const molecule *> &, const std::string ="", const std::string = "");
    48   virtual void queryMolecules(Parameter<std::vector<const molecule *> > &, const std::string ="", const std::string = "");
    49   virtual void queryVector(Parameter<Vector> &, const std::string ="", const std::string = "");
    50   virtual void queryVectors(Parameter<std::vector<Vector> > &, const std::string ="", const std::string = "");
    51   virtual void queryRealSpaceMatrix(Parameter<RealSpaceMatrix> &, const std::string ="", const std::string = "");
    52   virtual void queryElement(Parameter<const element *> &, const std::string ="", const std::string = "");
    53   virtual void queryElements(Parameter<std::vector<const element *> > &, const std::string ="", const std::string = "");
    54   virtual void queryFile(Parameter<boost::filesystem::path> &, const std::string ="", const std::string = "");
    55   virtual void queryFiles(Parameter<std::vector< boost::filesystem::path> > &, const std::string ="", const std::string = "");
    56   virtual void queryKeyValuePair(Parameter<KeyValuePair> &, const std::string ="", const std::string = "");
    57   virtual void queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > &, const std::string ="", const std::string = "");
    5836
    59   // specialized stuff for command line queries
    60   // all placed into Query/CommandLineQuery.hpp
    61   // !please adhere to alphabetical ordering!
     37protected:
    6238
    63   class AtomCommandLineQuery;
    64   class AtomsCommandLineQuery;
    65   class BooleanCommandLineQuery;
    66   class DoubleCommandLineQuery;
    67   class DoublesCommandLineQuery;
    68   class ElementCommandLineQuery;
    69   class ElementsCommandLineQuery;
    7039  class EmptyCommandLineQuery;
    71   class FileCommandLineQuery;
    72   class FilesCommandLineQuery;
    73   class IntCommandLineQuery;
    74   class IntsCommandLineQuery;
    75   class KeyValuePairCommandLineQuery;
    76   class KeyValuePairsCommandLineQuery;
    77   class MoleculeCommandLineQuery;
    78   class MoleculesCommandLineQuery;
    79   class RealSpaceMatrixCommandLineQuery;
    80   class StringCommandLineQuery;
    81   class StringsCommandLineQuery;
    82   class UnsignedIntCommandLineQuery;
    83   class UnsignedIntsCommandLineQuery;
    84   class VectorCommandLineQuery;
    85   class VectorsCommandLineQuery;
     40
     41  /** With the following boost::preprocessor code we generate virtual function
     42   * definitions and forward declarations for all desired query types in the
     43   * CommandLineUI specialization of class Dialog.
     44   */
     45#include "UIElements/GlobalListOfParameterQueries.hpp"
     46#include "UIElements/Dialog_impl_pre.hpp"
     47
     48  #include <boost/preprocessor/facilities/empty.hpp>
     49
     50  // iterate over all parameter query types for query declarations
     51  #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type
     52  #define SUFFIX BOOST_PP_EMPTY()
     53  #define BOOST_PP_LOCAL_MACRO(n) dialog_declaration(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, GLOBALLISTOFPARAMETERQUERIES_Type)
     54  #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMETERTOKENS-1)
     55  #include BOOST_PP_LOCAL_ITERATE()
     56  #undef dialog_declaration
     57  #undef SUFFIX
     58  #endif
     59
     60  // iterate over all parameter query types for forward declarations
     61  #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type
     62  #define BOOST_PP_LOCAL_MACRO(n) forward_declaration(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, CommandLineQuery)
     63  #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMETERTOKENS-1)
     64  #include BOOST_PP_LOCAL_ITERATE()
     65  #undef forward_declaration
     66  #endif
     67
     68#include "Dialog_impl_undef.hpp"
     69  /* End of preprocessor code piece */
     70
    8671};
    8772
Note: See TracChangeset for help on using the changeset viewer.