| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef HV_H_
- #define HV_H_
- /**
- * @copyright 2018 HeWei, all rights reserved.
- */
- // platform
- #include "hconfig.h"
- #include "hplatform.h"
- // c
- #include "hdef.h"
- #include "hversion.h"
- #include "hbase.h"
- #include "hsysinfo.h"
- #include "hproc.h"
- #include "hmath.h"
- #include "htime.h"
- #include "herr.h"
- #include "hlog.h"
- #include "hmutex.h"
- #include "hthread.h"
- #include "hsocket.h"
- #include "hbuf.h"
- #include "hurl.h"
- #include "hgui.h"
- // cpp
- #ifdef __cplusplus
- #include "hstring.h"
- #include "hvar.h"
- #include "hobj.h"
- #include "hfile.h"
- #include "hdir.h"
- #include "hscope.h"
- #include "hthreadpool.h"
- #include "hobjectpool.h"
- #endif
- #endif // HV_H_
|