|
coan
6.0.1
A C/C++ Configuration Analyzer
|
#include <cstddef>Go to the source code of this file.
Classes | |
| struct | integer |
Class integer encapsulates an integer of some type. More... | |
Enumerations | |
| enum | integer_type { INT_UNDEF, INT_INT = (3 << 16) | (sizeof(int) << 8) | 1, INT_UINT = (3 << 16) | (sizeof(int) << 8) | 2, INT_LONG = (4 << 16) | (sizeof(long) << 8) | 1, INT_ULONG = (4 << 16) | (sizeof(long) << 8) | 2, INT_LLONG = (5 << 16) | (sizeof(long long) << 8) | 1, INT_ULLONG = (5 << 16) | (sizeof(long long) << 8) | 2 } |
| Enumerated constants denoting integral types. More... | |
This file defines struct integer.
Definition in file integer.h.
| enum integer_type |