| 1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
| 2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
| 3 | #pragma once |
| 4 | |
| 5 | #include <cstdint> |
| 6 | |
| 7 | /** Commonly used types. */ |
| 8 | namespace bs |
| 9 | { |
| 10 | using std::int8_t; |
| 11 | using std::uint8_t; |
| 12 | using std::int16_t; |
| 13 | using std::uint16_t; |
| 14 | using std::int32_t; |
| 15 | using std::uint32_t; |
| 16 | using std::int64_t; |
| 17 | using std::uint64_t; |
| 18 | |
| 19 | using INT8 = int8_t; |
| 20 | using UINT8 = uint8_t; |
| 21 | using INT16 = int16_t; |
| 22 | using UINT16 = uint16_t; |
| 23 | using INT32 = int32_t; |
| 24 | using UINT32 = uint32_t; |
| 25 | using INT64 = int64_t; |
| 26 | using UINT64 = uint64_t; |
| 27 | } |
| 28 | |