Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
externals
clhep
include
CLHEP
Utility
memory.h
이 파일의 문서화 페이지로 가기
1
#ifndef CLHEP_MEMORY_H
2
#define CLHEP_MEMORY_H
3
4
// ======================================================================
5
//
6
// memory - memory management utilities
7
//
8
// ======================================================================
9
10
#include <memory>
11
12
namespace
CLHEP {
13
14
template
<
typename
T >
15
using
shared_ptr
= std::shared_ptr<T>;
16
template
<
typename
T >
17
using
weak_ptr
= std::weak_ptr<T>;
18
19
// ----------------------------------------------------------------------
20
// do_nothing_deleter - for shared_ptrs not taking ownership
21
// ----------------------------------------------------------------------
22
23
struct
do_nothing_deleter
{
24
inline
void
operator ()
(
void
const
* )
const
;
25
};
26
27
void
28
do_nothing_deleter::operator ()
(
void
const
* )
const
29
{ }
30
31
32
}
// namespace CLHEP
33
34
#endif // CLHEP_MEMORY_H
35
//
36
// ======================================================================
CLHEP::weak_ptr
std::weak_ptr< T > weak_ptr
Definition:
memory.h:17
CLHEP::shared_ptr
std::shared_ptr< T > shared_ptr
Definition:
memory.h:15
CLHEP::do_nothing_deleter::operator()
void operator()(void const *) const
Definition:
memory.h:28
CLHEP::do_nothing_deleter
Definition:
memory.h:23
다음에 의해 생성됨 :
1.8.5