coan  6.0.1
A C/C++ Configuration Analyzer
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
integer.h File Reference
#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...
 

Detailed Description

This file defines struct integer.

Definition in file integer.h.

Enumeration Type Documentation

Enumerated constants denoting integral types.

Enumerator
INT_UNDEF 

Undetermined type or invalid.

INT_INT 

Type int

INT_UINT 

Type unsigned

INT_LONG 

Type long

INT_ULONG 

Type unsigned long

INT_LLONG 

Type long long int

INT_ULLONG 

Type unsigned long long

Definition at line 47 of file integer.h.