]> git.tdb.fi Git - libs/core.git/blob - source/core/inttypes.h
Add move semantics to Variant
[libs/core.git] / source / core / inttypes.h
1 #ifndef MSP_CORE_INTTYPES_H_
2 #define MSP_CORE_INTTYPES_H_
3
4 #include <cstdint>
5
6 namespace Msp {
7
8 // These typedefs will be deprecated at some point
9 typedef std::int8_t Int8;
10 typedef std::uint8_t UInt8;
11 typedef std::int16_t Int16;
12 typedef std::uint16_t UInt16;
13 typedef std::int32_t Int32;
14 typedef std::uint32_t UInt32;
15 typedef std::int64_t Int64;
16 typedef std::uint64_t UInt64;
17 typedef std::intptr_t IntPtr;
18
19 } // namespace Msp
20
21 #endif