source: src/UIElements/GlobalListOfParameterQueries.hpp@ f79d65

Action_Thermostats Add_AtomRandomPerturbation Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChangeBugEmailaddress ChemicalSpaceEvaluator EmpiricalPotential_contain_HomologyGraph_documentation Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_oldresults ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps
Last change on this file since f79d65 was 6af6470, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Removed Vector and Vectors from boost preprocessor magic.

  • this is preparatory for allowing to change the class Dialog::Query<Vector> by specialization and have the Vector stored as string and not directly as Vector.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 * GlobalListOfParameterQueries.hpp
3 *
4 * Created on: May 17, 2015
5 * Author: heber
6 */
7
8#ifndef GLOBALLISTOFPARAMETERQUERIES_HPP_
9#define GLOBALLISTOFPARAMETERQUERIES_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#define GLOBALLISTOFPARAMETERQUERIES_Token \
17 (Boolean) \
18 (Int) \
19 (Ints) \
20 (UnsignedInt) \
21 (UnsignedInts) \
22 (Double) \
23 (Doubles) \
24 (String) \
25 (Strings) \
26 (Atom) \
27 (Atoms) \
28 (Molecule) \
29 (Molecules) \
30 (RealSpaceMatrix) \
31 (Element) \
32 (Elements) \
33 (File) \
34 (Files) \
35 (KeyValuePair) \
36 (KeyValuePairs)
37
38#define GLOBALLISTOFPARAMETERQUERIES_Type \
39 (bool) \
40 (int) \
41 (std::vector<int> ) \
42 (unsigned int) \
43 (std::vector<unsigned int> ) \
44 (double) \
45 (std::vector<double> ) \
46 (std::string) \
47 (std::vector<std::string> ) \
48 (const atom *) \
49 (std::vector<const atom *> ) \
50 (const molecule *) \
51 (std::vector<const molecule *> ) \
52 (RealSpaceMatrix) \
53 (const element *) \
54 (std::vector<const element *> ) \
55 (boost::filesystem::path) \
56 (std::vector<boost::filesystem::path> ) \
57 (KeyValuePair) \
58 (std::vector<KeyValuePair> )
59
60#endif /* GLOBALLISTOFPARAMETERQUERIES_HPP_ */
Note: See TracBrowser for help on using the repository browser.