tool-type.h 413 B

12345678910111213141516171819202122
  1. /*
  2. * 文件名: macro.h
  3. * 目标: 定义公共宏 和 公共头文件
  4. */
  5. #ifndef AFUN_TOOL_TYPE_H
  6. #define AFUN_TOOL_TYPE_H
  7. #include <iostream>
  8. #include <cinttypes>
  9. #include <cstdarg>
  10. #include "macro.h"
  11. namespace aFuntool {
  12. AFUN_STATIC const char NUL = 0;
  13. typedef uint32_t FileLine; // 文件行号
  14. typedef std::string FilePath; // 文件路径
  15. }
  16. #include "mem.h"
  17. #endif //AFUN_TOOL_TYPE_H