JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
common++.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_COMMONPP_HEADER_
2#define __JBXL_CPP_COMMONPP_HEADER_
3
10#ifndef CPLUSPLUS
11 #define CPLUSPLUS
12#endif
13
14#include "common.h"
15#include <string>
16
17//
18namespace jbxl {
19
20
21//
22// case of C, isNull() is ormal function, see tools.h
23//
24inline bool isNull(void* p) {
25 if (p==NULL) return true;
26
27#ifdef WIN32
28 if (p==WIN_DD_NULL) return true;
29#endif
30
31 return false;
32}
33
34#ifdef freeNull // for C
35#undef freeNull
36#endif
37template <typename T> inline void freeNull(T& p) { if (!jbxl::isNull(p)) ::free(p); p = (T)NULL;}
38
39template <typename T> inline void deleteNull(T& p) { delete p; p = (T)NULL;}
40
41
42#ifndef WIN32
43 #ifndef BOOL
44 #define BOOL int
45 #endif
46#endif
47
48
49} // namespace
50
51
52#endif
汎用共通ヘッダ
#define WIN_DD_NULL
Definition common.h:96
Definition Brep.h:29
bool isNull(void *p)
Definition common++.h:24
void freeNull(T &p)
Definition common++.h:37
void deleteNull(T &p)
Definition common++.h:39