blob: 62ad8f6771c09d7cad0b7b45fc193de11c58b63f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_VIRTUAL_SHARED_H
#define ICE_VIRTUAL_SHARED_H
#include <IceUtil/Config.h>
namespace Ice
{
#ifdef ICE_CPP11_MAPPING // C++11
class VirtualEnableSharedFromThisBase : public std::enable_shared_from_this<VirtualEnableSharedFromThisBase>
{
public:
virtual ~VirtualEnableSharedFromThisBase() = default;
};
template<typename T> class EnableSharedFromThis : public virtual VirtualEnableSharedFromThisBase
{
public:
std::shared_ptr<T> shared_from_this() const
{
return std::dynamic_pointer_cast<T>(
std::const_pointer_cast<VirtualEnableSharedFromThisBase>(
VirtualEnableSharedFromThisBase::shared_from_this()));
}
std::weak_ptr<T> weak_from_this() const
{
return shared_from_this();
}
};
# define ICE_SHARED Ice::VirtualEnableSharedFromThisBase
#else // C++98
template<typename T> class EnableSharedFromThis : public virtual IceUtil::Shared
{
public:
T* shared_from_this() const
{
return static_cast<T*>(const_cast<EnableSharedFromThis<T>*>(this));
}
};
# define ICE_SHARED IceUtil::Shared
#endif
}
#endif
|