h.h 495 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef H_H
  2. #define H_H
  3. // platform
  4. #include "hplatform.h"
  5. #ifdef __unix__
  6. #include "hunix.h"
  7. #endif
  8. // c
  9. #include "hversion.h"
  10. #include "hdef.h"
  11. #include "htime.h"
  12. #include "hlog.h"
  13. #include "herr.h"
  14. // cpp
  15. #ifdef __cplusplus
  16. #include "hstring.h"
  17. #include "hthread.h"
  18. #include "hmutex.h"
  19. #include "hscope.h"
  20. #include "singleton.h"
  21. #include "hvar.h"
  22. #include "hobj.h"
  23. #include "hbuf.h"
  24. #include "hbytearray.h"
  25. #include "hgui.h"
  26. #include "hframe.h"
  27. #include "htable.h"
  28. #endif
  29. #endif // H_H