Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
itpp
base
ittypes.h
Go to the documentation of this file.
1
29
#ifndef ITTYPES_H
30
#define ITTYPES_H
31
33
34
// Fixed size integer types for MSVC++
35
#if defined(_MSC_VER)
36
typedef
signed
char
int8_t;
37
typedef
unsigned
char
uint8_t;
38
typedef
signed
short
int16_t;
39
typedef
unsigned
short
uint16_t;
40
typedef
signed
int
int32_t;
41
typedef
unsigned
int
uint32_t;
42
typedef
signed
__int64 int64_t;
43
typedef
unsigned
__int64 uint64_t;
44
#else
45
// Assume that inttypes.h header file is available everywhere
46
# include <inttypes.h>
47
#endif // defined(_MSC_VER)
48
50
51
#endif // ITTYPES_H
Generated on Fri Mar 21 2014 17:14:12 for IT++ by
Doxygen
1.8.1.2