Faro Engine 0.0.0.b519570 (main)
Loading...
Searching...
No Matches
Primitives.hpp
Go to the documentation of this file.
1#pragma once
2#include <functional>
3
4namespace Faro
5{
6 typedef uint8_t uint8;
7 typedef int8_t int8;
8
9 typedef uint16_t uint16;
10 typedef int16_t int16;
11
12 typedef uint32_t uint32;
13 typedef int32_t int32;
14
15 typedef uint64_t uint64;
16 typedef int64_t int64;
17
18 template <typename T>
19 using Function = std::function<T>;
20}
Definition Array.hpp:8
int32_t int32
Definition Primitives.hpp:13
std::function< T > Function
Definition Primitives.hpp:19
uint64_t uint64
Definition Primitives.hpp:15
int8_t int8
Definition Primitives.hpp:7
int16_t int16
Definition Primitives.hpp:10
uint16_t uint16
Definition Primitives.hpp:9
int64_t int64
Definition Primitives.hpp:16
uint32_t uint32
Definition Primitives.hpp:12
uint8_t uint8
Definition Primitives.hpp:6