generallib/general/inc/utils.h

25 lines
345 B
C
Raw Normal View History

2019-12-21 10:50:15 +00:00
//
// Created by 29019 on 2019/5/2.
//
#ifndef CUTILS_UTILS_H
#define CUTILS_UTILS_H
#include "utils.h"
#include <string>
#include "debug.h"
#include <sys/types.h>
2019-12-21 10:50:15 +00:00
using namespace std;
2019-12-21 10:50:15 +00:00
#define RELEASE_MEMORY(x) \
if(nullptr == x) \
{ \
delete(x); \
x = nullptr;\
}
string itos(int x);
2020-04-01 13:44:44 +00:00
2019-12-21 10:50:15 +00:00
#endif //CUTILS_UTILS_H