cgv
Loading...
Searching...
No Matches
standard_types.h
1#pragma once
2
3namespace cgv {
5 namespace type {
6
8typedef signed char int8_type;
10typedef short int16_type;
12typedef int int32_type;
14typedef long long int64_type;
16typedef unsigned char uint8_type;
18typedef unsigned short uint16_type;
20typedef unsigned int uint32_type;
22typedef unsigned long long uint64_type;
24typedef float flt32_type;
26typedef double flt64_type;
28typedef wchar_t wchar_type;
29
31enum DummyEnum { AAAAA,BBBBB };
32
33 } // namespace type
34}// namespace cgv
double flt64_type
this type provides a 64 bit floating point type
DummyEnum
some enum to mark an integral parameter to be of enum type
signed char int8_type
this type provides an 8 bit signed integer type
int int32_type
this type provides an 32 bit signed integer type
short int16_type
this type provides an 16 bit signed integer type
unsigned short uint16_type
this type provides an 16 bit unsigned integer type
unsigned long long uint64_type
this type provides an 64 bit unsigned integer type
wchar_t wchar_type
wide character type
unsigned int uint32_type
this type provides an 32 bit unsigned integer type
long long int64_type
this type provides an 64 bit signed integer type
float flt32_type
this type provides a 32 bit floating point type
unsigned char uint8_type
this type provides an 8 bit unsigned integer type
the cgv namespace
Definition print.h:11