| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef HW_H_
- #define HW_H_
- /**
- * @copyright 2018 HeWei, all rights reserved.
- */
- // platform
- #include "hplatform.h"
- // c
- #include "hversion.h"
- #include "hdef.h"
- #include "herr.h"
- #include "hlog.h"
- #include "htime.h"
- // cpp
- #ifdef __cplusplus
- #include "hstring.h"
- #include "hbuf.h"
- #include "hfile.h"
- #include "hbytearray.h"
- #include "hscope.h"
- #include "hmutex.h"
- #include "hthread.h"
- #include "hthreadpool.h"
- #include "hvar.h"
- #include "hobj.h"
- #include "hgui.h"
- #include "singleton.h"
- #include "iniparser.h"
- #endif
- #endif // HW_H_
|