Jpp 19.3.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
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 */
12namespace 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
Auxiliary classes and methods for language specific functionality.
JTYPELIST< bool, char, unsignedchar, short, unsignedshort, int, unsignedint, longint, unsignedlongint, longlongint, unsignedlonglongint, float, double, longdouble >::typelist JPrimitiveTypes_t
List of primitive types.