blob: c2675c073d54fbee1f4df74a678753eddac58153 [file] [log] [blame]
Zane Shelley876bc2a2019-07-23 12:55:37 -05001#pragma once
2
Paul Greenwood701fcc12019-08-15 19:29:31 -05003/**
4@file hei_includes.hpp
5@brief The purpose of this file is to include common headers that will be used
6throughout this library.
7*/
Zane Shelley876bc2a2019-07-23 12:55:37 -05008
Zane Shelleya61f4c52019-08-01 13:58:49 -05009// Standard library includes
Zane Shelley876bc2a2019-07-23 12:55:37 -050010#include <stdint.h>
Zane Shelleyb406de42019-09-09 16:10:38 -050011#include <vector>
Zane Shelley876bc2a2019-07-23 12:55:37 -050012
Zane Shelleya61f4c52019-08-01 13:58:49 -050013// External includes
Zane Shelley876bc2a2019-07-23 12:55:37 -050014#include <hei_user_defines.hpp> // For HEI_ASSERT, HEI_INF, and HEI_ERR
15
Zane Shelleya61f4c52019-08-01 13:58:49 -050016// Internal includes
Zane Shelleyb406de42019-09-09 16:10:38 -050017#include <hei_chip.hpp>
Zane Shelley5a266612019-08-15 16:23:53 -050018#include <hei_return_code.hpp>
Zane Shelleyb406de42019-09-09 16:10:38 -050019#include <hei_types.hpp>
Zane Shelleya61f4c52019-08-01 13:58:49 -050020