Candidate_v1.6.1
ChemicalSpaceEvaluator
Gui_displays_atomic_force_velocity
PythonUI_with_named_parameters
TremoloParser_IncreasedPrecision
Last change
on this file since 2c97ad 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
|
Rev | Line | |
---|
[37a67f] | 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.