h.h 546 B

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