CPPMyth
Library to interoperate with MythTV server
cppdef.h
1
#pragma once
2
3
#include <cstddef>
4
5
#define SAFE_DELETE(p) if ((p) != NULL) { delete (p); (p) = NULL; }
6
#define SAFE_DELETE_ARRAY(p) if ((p) != NULL) { delete[] (p); (p) = NULL; }
cppmyth
src
private
cppdef.h
Generated on Thu Jan 9 2020 15:17:59 for CPPMyth by
1.8.13