CPPMyth
Library to interoperate with MythTV server
Loading...
Searching...
No Matches
cppdef.h
1
#pragma once
2
3
#define SAFE_DELETE(p) if ((p) != nullptr) { delete (p); (p) = nullptr; }
4
#define SAFE_DELETE_ARRAY(p) if ((p) != nullptr) { delete[] (p); (p) = nullptr; }
cppmyth
src
private
cppdef.h
Generated on
for CPPMyth by
1.15.0