// // Created by 29019 on 2019/5/2. // #ifndef CUTILS_UTILS_H #define CUTILS_UTILS_H #include "utils.h" #include #include "debug.h" #include using namespace std; #define RELEASE_MEMORY(x) \ if(nullptr == x) \ { \ delete(x); \ x = nullptr;\ } string itos(int x); #endif //CUTILS_UTILS_H