//
//  Copyright (c) 2019 Rally Tactical Systems, Inc.
//  All rights reserved.
//

#ifndef EngageIntegralDataTypes_h
#define EngageIntegralDataTypes_h

typedef unsigned char uint8_t;      ///< Unsigned char (8 bits)
typedef signed short int16_t;       ///< Signed short (16 bits)
typedef unsigned short uint16_t;    ///< Unsigned short (16 bits)
typedef unsigned long uint32_t;     ///< Unsigned long (32 bits)
typedef unsigned int size_t;        ///< Unsigned integer ()

#endif // EngageIntegralDataTypes_h
