TurtleBrains  0.2.1
High quality, portable, C++ API for native application and game development.
tb_types.h
1 
9 #ifndef _TurtleBrains_Types_h_
10 #define _TurtleBrains_Types_h_
11 
12 #include "tb_configuration.h"
13 #include "tb_string.h"
14 
15 #include <stdint.h>
16 
17 namespace TurtleBrains
18 {
19  namespace Core
20  {
21 
22  typedef int8_t int8;
23  typedef uint8_t uint8;
24  typedef int16_t int16;
25  typedef uint16_t uint16;
26  typedef int32_t int32;
27  typedef uint32_t uint32;
28  typedef int64_t int64;
29  typedef uint64_t uint64;
30 
31  }; /* namespace Core */
32 }; /* namespace TurtleBrains */
33 
34 namespace tbCore = TurtleBrains::Core;
35 
36 #endif /* _TurtleBrains_Types_h_ */
int64_t int64
Signed integer with a size of 64 bits. Supports values from -(2^63) to (2^63 - 1).
Definition: tb_types.h:28
uint16_t uint16
Unsigned integer with a size of 16 bits. Supports values from 0 to 65535.
Definition: tb_types.h:25
Contains all functions, classes and helpers related to game/application development written by Tim "B...
Definition: tb_application_dialog.h:21
int32_t int32
Signed integer with a size of 32 bits. Supports values from -2147483648 to 2147483647.
Definition: tb_types.h:26
uint64_t uint64
Unsigned integer with a size of 64 bits, Supports values from 0 to (2^64 - 1).
Definition: tb_types.h:29
int8_t int8
Signed integer with a size of 8 bits. Supports values from -128 to 127.
Definition: tb_types.h:22
uint8_t uint8
Unsigned integer with a size of 8 bits. Supports values from 0 to 255.
Definition: tb_types.h:23
int16_t int16
Signed integer with a size of 16 bits. Supports values from -32768 to 32767.
Definition: tb_types.h:24
uint32_t uint32
Unsigned integer with a size of 32 bits. Supports values from 0 to 4294967295, (2^32 - 1)...
Definition: tb_types.h:27
Contains core functionality for each component of the API.
Definition: tb_dynamic_structure.h:21