h.h 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef HW_H_
  2. #define HW_H_
  3. /**
  4. * @copyright 2018 HeWei, all rights reserved.
  5. */
  6. //-------------------base---------------------------
  7. // platform
  8. #include "hplatform.h"
  9. #include "hdef.h"
  10. #include "hversion.h"
  11. // c
  12. #include "hsysinfo.h"
  13. #include "hproc.h"
  14. #include "htime.h"
  15. #include "herr.h"
  16. // cpp
  17. #ifdef __cplusplus
  18. #include "hlog.h"
  19. #include "hstring.h"
  20. #include "hsocket.h"
  21. #include "hvar.h"
  22. #include "hobj.h"
  23. #include "hgui.h"
  24. #include "hbuf.h"
  25. #include "hfile.h"
  26. #include "hscope.h"
  27. #include "hmutex.h"
  28. #include "hthread.h"
  29. #include "hthreadpool.h"
  30. #endif
  31. //--------------------utils-----------------------------
  32. #ifdef WITH_HW_UTILS
  33. #include "base64.h"
  34. #include "hbytearray.h"
  35. #include "hframe.h"
  36. #include "ifconfig.h"
  37. #include "iniparser.h"
  38. #include "json.hpp"
  39. #include "singleton.h"
  40. #include "htask.h"
  41. #include "task_queue.h"
  42. #endif
  43. //--------------------misc------------------------------
  44. #ifdef WITH_HW_MISC
  45. #include "win32_getopt.h"
  46. #endif
  47. #endif // HW_H_