All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Byte.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_BYTE_H_
36 #define _BLAZE_UTIL_BYTE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
45 
46 
47 namespace blaze {
48 
49 //=================================================================================================
50 //
51 // TYPE DEFINITION
52 //
53 //=================================================================================================
54 
55 //*************************************************************************************************
61 typedef unsigned char byte;
62 //*************************************************************************************************
63 
64 
65 
66 
67 //=================================================================================================
68 //
69 // COMPILE TIME CONSTRAINT
70 //
71 //=================================================================================================
72 
73 //*************************************************************************************************
75 namespace check {
76 
77 // Constraint on the byte data type
80 
81 } // namespace check
83 //*************************************************************************************************
84 
85 } // namespace blaze
86 
87 #endif
#define BLAZE_CONSTRAINT_MUST_BE_INTEGRAL_TYPE(T)
Constraint on the data type.In case the given data type T is not an integral data type...
Definition: Integral.h:78
Constraint on the size of a data type.
Constraint on the data type.
#define BLAZE_CONSTRAINT_MUST_HAVE_SIZE(T, S)
Constraint on the size of a data type.In case the type T doesn't have a size of S bytes...
Definition: Size.h:78
unsigned char byte
Byte data type of the Blaze library.The byte data type is guaranteed to be an integral data type of s...
Definition: Byte.h:61