Jpp  17.1.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JPrimitiveTypes.hh
Go to the documentation of this file.
1 #ifndef __JLANG__JPRIMITIVETYPES__
2 #define __JLANG__JPRIMITIVETYPES__
3 
4 #include "JLang/JTypeList.hh"
5 
6 /**
7  * \file
8 
9  * Type list of primitive data types.
10  * \author mdejong
11  */
12 namespace JLANG {
13 
14  /**
15  * List of primitive types.
16  */
17  typedef JTYPELIST<bool,
18  char,
19  unsigned char,
20  short,
21  unsigned short,
22  int,
23  unsigned int,
24  long int,
25  unsigned long int,
26  long long int,
27  unsigned long long int,
28  float,
29  double,
30  long double>::typelist JPrimitiveTypes_t; //!< List of all primitive types
31 
32 }
33 
34 #endif
JTYPELIST< bool, char, unsigned char, short, unsigned short, int, unsigned int, long int, unsigned long int, long long int, unsigned long long int, float, double, long double >::typelist JPrimitiveTypes_t
List of primitive types.