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
//
18
namespace
jbxl
{
19
20
21
//
22
// case of C, isNull() is ormal function, see tools.h
23
//
24
inline
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
37
template
<
typename
T>
inline
void
freeNull
(T& p) {
if
(!
jbxl::isNull
(p)) ::free(p); p = (T)NULL;}
38
39
template
<
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
common.h
汎用共通ヘッダ
WIN_DD_NULL
#define WIN_DD_NULL
Definition
common.h:96
jbxl
Definition
Brep.h:29
jbxl::isNull
bool isNull(void *p)
Definition
common++.h:24
jbxl::freeNull
void freeNull(T &p)
Definition
common++.h:37
jbxl::deleteNull
void deleteNull(T &p)
Definition
common++.h:39
BasicLib
common++.h
Generated on Sat Oct 12 2024 19:42:07 for JunkBox_Lib++ (for Windows) by
1.11.0