Loading [MathJax]/extensions/TeX/AMSsymbols.js
CoolProp
6.7.1dev
An open-source fluid property and humid air property database
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
r
s
t
u
v
w
x
Variables
Typedefs
Enumerations
Enumerator
b
d
f
g
h
i
n
p
q
r
s
t
v
x
y
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
c
e
i
m
n
o
p
r
s
t
v
z
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
Variables
Typedefs
b
c
i
m
t
u
v
Enumerations
Enumerator
c
m
t
Macros
_
a
c
d
e
f
i
l
m
n
p
r
t
u
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
include
crossplatform_shared_ptr.h
Go to the documentation of this file.
1
#ifndef CROSSPLATFORM_SHARED_PTR
2
#define CROSSPLATFORM_SHARED_PTR
3
4
// By default, we use shared_ptr from the std namespace, and include the memory header,
5
// but some compilers need different treatment. Cmake provides the tools to
6
// ensure that the correct header is identified as a compile-time check, and we use
7
// that capability to change the include and/or the namespace
8
9
#if defined(SHARED_PTR_TR1_MEMORY_HEADER)
10
# include <tr1/memory>
11
#else
12
# include <memory>
13
#endif
14
15
#if defined(SHARED_PTR_TR1_NAMESPACE)
16
using
std::tr1::shared_ptr;
17
#else
18
using
std::shared_ptr;
19
#endif
20
21
#endif
Generated on Mon Mar 17 2025 04:25:23 for CoolProp by
1.9.1