libqi-api  2.8.7.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
types.hpp
Go to the documentation of this file.
1 #pragma once
2 /*
3 ** Copyright (C) 2012 Aldebaran Robotics
4 ** See COPYING for the license
5 */
6 
7 
8 #ifndef _QI_TYPES_HPP_
9 # define _QI_TYPES_HPP_
10 
55 # include <cstdint>
56 namespace qi
57 {
58  using int8_t = int8_t ;
59  using int16_t = int16_t;
60  using int32_t = int32_t;
61  using int64_t = int64_t;
62 
63  using uint8_t = uint8_t;
64  using uint16_t = uint16_t;
65  using uint32_t = uint32_t;
66  using uint64_t = uint64_t;
67 }
68 
69 #endif // _QI_TYPES_HPP_
int64_t int64_t
Definition: types.hpp:61
uint32_t uint32_t
Definition: types.hpp:65
uint16_t uint16_t
Definition: types.hpp:64
int32_t int32_t
Definition: types.hpp:60
uint8_t uint8_t
Definition: types.hpp:63
int8_t int8_t
Definition: types.hpp:58
uint64_t uint64_t
Definition: types.hpp:66
int16_t int16_t
Definition: types.hpp:59