h.h 589 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef HW_H_
  2. #define HW_H_
  3. /**
  4. * @copyright 2018 HeWei, all rights reserved.
  5. */
  6. // platform
  7. #include "hplatform.h"
  8. #include "hdef.h"
  9. #include "hversion.h"
  10. // c
  11. #include "hbase.h"
  12. #include "hsysinfo.h"
  13. #include "hproc.h"
  14. #include "hmath.h"
  15. #include "htime.h"
  16. #include "herr.h"
  17. #include "hlog.h"
  18. #include "hmutex.h"
  19. #include "hsocket.h"
  20. // cpp
  21. #ifdef __cplusplus
  22. #include "hstring.h"
  23. #include "hvar.h"
  24. #include "hobj.h"
  25. #include "hgui.h"
  26. #include "hbuf.h"
  27. #include "hfile.h"
  28. #include "hdir.h"
  29. #include "hscope.h"
  30. #include "hthread.h"
  31. #include "hthreadpool.h"
  32. #endif
  33. #endif // HW_H_