/* * GlobalListOfParameterQueries.hpp * * Created on: May 17, 2015 * Author: heber */ #ifndef GLOBALLISTOFPARAMETERQUERIES_HPP_ #define GLOBALLISTOFPARAMETERQUERIES_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #define GLOBALLISTOFPARAMETERQUERIES_Token \ (Boolean) \ (Int) \ (Ints) \ (UnsignedInt) \ (UnsignedInts) \ (Double) \ (Doubles) \ (String) \ (Strings) \ (Atom) \ (Atoms) \ (Molecule) \ (Molecules) \ (Vector) \ (Vectors) \ (RealSpaceMatrix) \ (Element) \ (Elements) \ (File) \ (Files) \ (KeyValuePair) \ (KeyValuePairs) #define GLOBALLISTOFPARAMETERQUERIES_Type \ (bool) \ (int) \ (std::vector ) \ (unsigned int) \ (std::vector ) \ (double) \ (std::vector ) \ (std::string) \ (std::vector ) \ (const atom *) \ (std::vector ) \ (const molecule *) \ (std::vector ) \ (Vector) \ (std::vector ) \ (RealSpaceMatrix) \ (const element *) \ (std::vector ) \ (boost::filesystem::path) \ (std::vector ) \ (KeyValuePair) \ (std::vector ) #endif /* GLOBALLISTOFPARAMETERQUERIES_HPP_ */