Jpp
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 namespace JLANG {
7 
8  /**
9  * List of primitive types.
10  */
11  typedef JTYPELIST<bool,
12  char,
13  unsigned char,
14  short,
15  unsigned short,
16  int,
17  unsigned int,
18  long int,
19  unsigned long int,
20  long long int,
21  unsigned long long int,
22  float,
23  double,
24  long double>::typelist JPrimitiveTypes_t; //!< List of all primitive types
25 
26 }
27 
28 #endif
JLANG::JPrimitiveTypes_t
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.
Definition: JPrimitiveTypes.hh:24
JTypeList.hh
JLANG
Auxiliary classes and methods for language specific functionality.
Definition: JAbstractClass.hh:10